From e60283c65eae262d36d5ae5a98c8ac654a59b2b9 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Mon, 28 Nov 2022 14:42:01 -0800 Subject: [PATCH 01/44] Fixes java tests --- .../openapitools/codegen/CodegenConfig.java | 3 ++ .../codegen/DefaultGenerator.java | 36 ++++++++++++++++--- .../codegen/DefaultGeneratorTest.java | 4 +-- 3 files changed, 36 insertions(+), 7 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java index a1b4f55b849..8d3bf2b8025 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java @@ -22,6 +22,7 @@ import io.swagger.v3.oas.models.Operation; import io.swagger.v3.oas.models.media.Schema; import io.swagger.v3.oas.models.parameters.RequestBody; +import io.swagger.v3.oas.models.responses.ApiResponse; import io.swagger.v3.oas.models.security.SecurityScheme; import io.swagger.v3.oas.models.servers.Server; import io.swagger.v3.oas.models.servers.ServerVariable; @@ -375,4 +376,6 @@ public interface CodegenConfig { CodegenParameter fromRequestBody(RequestBody body, String bodyParameterName, String sourceJsonPath); String getBodyParameterName(CodegenOperation co); + + CodegenResponse fromResponse(String responseCode, ApiResponse response, String sourceJsonPath); } diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index dc30348f454..d037a4c6d09 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -28,6 +28,7 @@ import io.swagger.v3.oas.models.media.Schema; import io.swagger.v3.oas.models.parameters.Parameter; import io.swagger.v3.oas.models.parameters.RequestBody; +import io.swagger.v3.oas.models.responses.ApiResponse; import io.swagger.v3.oas.models.security.*; import io.swagger.v3.oas.models.tags.Tag; import org.apache.commons.io.FilenameUtils; @@ -677,6 +678,28 @@ void generatePaths(List files, Map> operati generateFiles(apiDocFiles, shouldGenerateApiDocs, CodegenConstants.API_DOCS, files); } + private TreeMap generateResponses(List files) { + final Map specResponses = this.openAPI.getComponents().getResponses(); + if (specResponses == null) { + LOGGER.warn("Skipping generation of responses because specification document has no responses."); + return null; + } + TreeMap responses = new TreeMap<>(); + for (Map.Entry entry: specResponses.entrySet()) { + String componentName = entry.getKey(); + ApiResponse apiResponse = entry.getValue(); + String sourceJsonPath = "#/components/responses/" + componentName; + CodegenResponse response = config.fromResponse(null, apiResponse, sourceJsonPath); + // use refRequestBody so the refModule info will be contained inside the parameter + ApiResponse specRefApiResponse = new ApiResponse(); + specRefApiResponse.set$ref(sourceJsonPath); + CodegenResponse refResponse = config.fromResponse(null, specRefApiResponse, null); + responses.put(componentName, refResponse); + // TODO code to generate file and doc file + } + return responses; + } + private TreeMap generateRequestBodies(List files) { final Map specRequestBodies = this.openAPI.getComponents().getRequestBodies(); if (specRequestBodies == null) { @@ -1115,7 +1138,7 @@ private void generateSupportingFiles(List files, Map bundl generateVersionMetadata(files); } - Map buildSupportFileBundle(List allOperations, List allModels, TreeMap requestBodies) { + Map buildSupportFileBundle(List allOperations, List allModels, TreeMap requestBodies, TreeMap responses) { Map bundle = new HashMap<>(config.additionalProperties()); bundle.put("apiPackage", config.apiPackage()); @@ -1149,6 +1172,7 @@ Map buildSupportFileBundle(List allOperations, Li bundle.put("apiInfo", apis); bundle.put("pathAndHttpMethodToOperation", pathAndHttpMethodToOperation); bundle.put("requestBodies", requestBodies); + bundle.put("responses", responses); bundle.put("models", allModels); bundle.put("apiFolder", config.apiPackage().replace('.', File.separatorChar)); bundle.put("modelPackage", config.modelPackage()); @@ -1260,22 +1284,24 @@ public List generate() { processUserDefinedTemplates(); List files = new ArrayList<>(); - // models + // components.schemas / models List filteredSchemas = ModelUtils.getSchemasUsedOnlyInFormParam(openAPI); List allModels = new ArrayList<>(); generateModels(files, allModels, filteredSchemas); - // requestBodies + // components.requestBodies TreeMap requestBodies = generateRequestBodies(files); // paths input Map> paths = processPaths(this.openAPI.getPaths()); // apis List allOperations = new ArrayList<>(); generateApis(files, allOperations, allModels, paths); - // paths generation + // paths generatePaths(files, paths); + // components.responses + TreeMap responses = generateResponses(files); // supporting files - Map bundle = buildSupportFileBundle(allOperations, allModels, requestBodies); + Map bundle = buildSupportFileBundle(allOperations, allModels, requestBodies, responses); generateSupportingFiles(files, bundle); if (dryRun) { diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java index d40aace8e67..e7a2c1371c7 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java @@ -657,7 +657,7 @@ public void testHandlesTrailingSlashInServers() { Map> paths = generator.processPaths(config.openAPI.getPaths()); generator.generateApis(files, allOperations, allModels, paths); - Map bundle = generator.buildSupportFileBundle(allOperations, allModels, null); + Map bundle = generator.buildSupportFileBundle(allOperations, allModels, null, null); LinkedList servers = (LinkedList) bundle.get("servers"); Assert.assertEquals(servers.get(0).url, ""); Assert.assertEquals(servers.get(1).url, "http://trailingshlash.io:80/v1"); @@ -684,7 +684,7 @@ public void testHandlesRelativeUrlsInServers() { Map> paths = generator.processPaths(config.openAPI.getPaths()); generator.generateApis(files, allOperations, allModels, paths); - Map bundle = generator.buildSupportFileBundle(allOperations, allModels, null); + Map bundle = generator.buildSupportFileBundle(allOperations, allModels, null, null); LinkedList servers = (LinkedList) bundle.get("servers"); Assert.assertEquals(servers.get(0).url, "/relative/url"); } From e97a93b65bc8b99b794bf956f18eef31310bf656 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 08:44:59 -0800 Subject: [PATCH 02/44] Adds code to generate response modules --- .../openapitools/codegen/CodegenConfig.java | 8 +++++ .../codegen/CodegenConstants.java | 2 ++ .../openapitools/codegen/DefaultCodegen.java | 15 +++++++++ .../codegen/DefaultGenerator.java | 33 ++++++++++++++++--- .../languages/PythonClientCodegen.java | 3 ++ 5 files changed, 56 insertions(+), 5 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java index 8d3bf2b8025..8c565157ba3 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java @@ -89,6 +89,8 @@ public interface CodegenConfig { String requestBodyFileFolder(); + String responseFileFolder(); + String toApiName(String name); String toApiVarName(String name); @@ -181,6 +183,10 @@ public interface CodegenConfig { Set pathEndpointResponseHeaderTemplateFiles(); + Map responseTemplateFiles(); + + Map responseDocTemplateFiles(); + Map apiTestTemplateFiles(); Map modelTestTemplateFiles(); @@ -221,6 +227,8 @@ public interface CodegenConfig { String toRequestBodyDocFilename(String componentName); + String toResponseFilename(String componentName); + String toPathFileName(String path); String toParameterFileName(String baseName); diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java index 1cf690ebd7c..33f3bce1321 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConstants.java @@ -28,6 +28,8 @@ public class CodegenConstants { public static final String REQUEST_BODIES = "requestBodies"; public static final String REQUEST_BODY_DOCS = "requestBodyDocs"; + + public static final String RESPONSES = "responses"; public static final String SUPPORTING_FILES = "supportingFiles"; public static final String MODEL_TESTS = "modelTests"; public static final String MODEL_DOCS = "modelDocs"; diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 88ce3fa35a0..7b05db8978e 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -184,6 +184,8 @@ apiTemplateFiles are for API outputs only (controllers/handlers). protected Map modelTemplateFiles = new HashMap<>(); protected Map requestBodyTemplateFiles = new HashMap<>(); protected Map requestBodyDocTemplateFiles = new HashMap(); + protected Map responseTemplateFiles = new HashMap<>(); + protected Map responseDocTemplateFiles = new HashMap<>(); protected Map pathEndpointTemplateFiles = new HashMap(); protected Set pathEndpointDocTemplateFiles = new HashSet<>(); protected Set pathEndpointTestTemplateFiles = new HashSet<>(); @@ -1214,6 +1216,12 @@ public Map modelTemplateFiles() { @Override public Map requestBodyDocTemplateFiles() { return requestBodyDocTemplateFiles; } + @Override + public Map responseTemplateFiles() { return responseTemplateFiles; } + + @Override + public Map responseDocTemplateFiles() { return responseDocTemplateFiles; } + @Override public Map pathEndpointTemplateFiles() { return pathEndpointTemplateFiles; } @@ -1241,6 +1249,8 @@ public String toRequestBodyFilename(String componentName) { public String toRequestBodyDocFilename(String componentName) { return toModuleFilename(componentName); } + public String toResponseFilename(String componentName) { return toModuleFilename(componentName); } + @Override public String apiFileFolder() { return outputFolder + File.separator + apiPackage().replace('.', File.separatorChar); @@ -7320,6 +7330,11 @@ public String requestBodyFileFolder() { return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "request_bodies"; } + @Override + public String responseFileFolder() { + return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "responses"; + } + @Override public String defaultTemplatingEngine() { return "mustache"; diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index d037a4c6d09..6424a5cfd9a 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -685,9 +685,9 @@ private TreeMap generateResponses(List files) { return null; } TreeMap responses = new TreeMap<>(); - for (Map.Entry entry: specResponses.entrySet()) { - String componentName = entry.getKey(); - ApiResponse apiResponse = entry.getValue(); + for (Map.Entry responseEntry: specResponses.entrySet()) { + String componentName = responseEntry.getKey(); + ApiResponse apiResponse = responseEntry.getValue(); String sourceJsonPath = "#/components/responses/" + componentName; CodegenResponse response = config.fromResponse(null, apiResponse, sourceJsonPath); // use refRequestBody so the refModule info will be contained inside the parameter @@ -695,7 +695,30 @@ private TreeMap generateResponses(List files) { specRefApiResponse.set$ref(sourceJsonPath); CodegenResponse refResponse = config.fromResponse(null, specRefApiResponse, null); responses.put(componentName, refResponse); - // TODO code to generate file and doc file + Boolean generateResponses = Boolean.TRUE; + for (Map.Entry entry : config.responseTemplateFiles().entrySet()) { + String templateName = entry.getKey(); + String fileExtension = entry.getValue(); + String fileFolder = config.responseFileFolder(); + String filename = fileFolder + File.separatorChar + config.toResponseFilename(componentName) + fileExtension; + + Map templateData = new HashMap<>(); + templateData.put("packageName", config.packageName()); + templateData.put("response", response); + templateData.put("imports", response.imports); + try { + File written = processTemplateToFile(templateData, templateName, filename, generateResponses, CodegenConstants.RESPONSES, fileFolder); + if (written != null) { + files.add(written); + if (config.isEnablePostProcessFile() && !dryRun) { + config.postProcessFile(written, "response"); + } + } + } catch (Exception e) { + throw new RuntimeException("Could not generate file '" + filename + "'", e); + } + } + // TODO code to generate doc file } return responses; } @@ -723,7 +746,7 @@ private TreeMap generateRequestBodies(List files String docExtension = config.getDocExtension(); String suffix = docExtension != null ? docExtension : config.requestBodyTemplateFiles().get(templateName); String fileFolder = config.requestBodyFileFolder(); - String filename = config.requestBodyFileFolder() + File.separatorChar + config.toRequestBodyFilename(componentName) + suffix; + String filename = fileFolder + File.separatorChar + config.toRequestBodyFilename(componentName) + suffix; Map templateData = new HashMap<>(); templateData.put("packageName", config.packageName()); 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 720ff5dbe61..fc1f665427e 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 @@ -324,6 +324,7 @@ public void processOpts() { pathEndpointResponseTemplateFiles.put("response.handlebars", "__init__.py"); pathEndpointResponseHeaderTemplateFiles.add("header.handlebars"); pathEndpointTestTemplateFiles.add("endpoint_test.handlebars"); + responseTemplateFiles.put("response.handlebars", ".py"); if (StringUtils.isEmpty(System.getenv("PYTHON_POST_PROCESS_FILE"))) { LOGGER.info("Environment variable PYTHON_POST_PROCESS_FILE not defined so the Python code may not be properly formatted. To define it, try 'export PYTHON_POST_PROCESS_FILE=\"/usr/local/bin/yapf -i\"' (Linux/Mac)"); @@ -2357,6 +2358,8 @@ public String toRequestBodyFilename(String componentName) { return toModuleFilename(componentName) + "_request_body"; } + public String toResponseFilename(String componentName) { return toModuleFilename(componentName) + "_response"; } + public String toRequestBodyDocFilename(String componentName) { return toRequestBodyFilename(componentName); } From 6129a7dd58270853e42dc03a1eff2ce065ece56f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 08:54:32 -0800 Subject: [PATCH 03/44] Adds response component --- ...odels-for-testing-with-http-signature.yaml | 35 ++++++++++--------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml index 61a9c749275..a7a916efdfe 100644 --- a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml +++ b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml @@ -41,7 +41,7 @@ paths: operationId: addPet responses: '200': - description: Ok + $ref: '#/components/responses/SuccessDescriptionOnly' '405': description: Invalid input security: @@ -480,7 +480,7 @@ paths: operationId: logoutUser responses: default: - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' '/user/{username}': get: tags: @@ -549,7 +549,7 @@ paths: type: string responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: User not found /fake_classname_test: @@ -655,7 +655,7 @@ paths: - -1.2 responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: Not found content: @@ -701,7 +701,7 @@ paths: operationId: EndpointParameters responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: User not found security: @@ -836,7 +836,7 @@ paths: format: int64 responses: '200': - description: succeeded + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/refs/number: post: tags: @@ -1051,7 +1051,7 @@ paths: operationId: JsonFormData responses: '200': - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/x-www-form-urlencoded: @@ -1076,7 +1076,7 @@ paths: operationId: InlineAdditionalProperties responses: '200': - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1099,7 +1099,7 @@ paths: type: string responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1132,7 +1132,7 @@ paths: operationId: BodyWithFileSchema responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1163,7 +1163,7 @@ paths: type: string responses: "200": - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/test-query-paramters: put: tags: @@ -1219,7 +1219,7 @@ paths: $ref: '#/components/schemas/StringWithValidation' responses: "200": - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/{petId}/uploadImageWithRequiredFile': post: tags: @@ -1524,7 +1524,7 @@ paths: type: string responses: '200': - description: ok + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/refObjInQuery': get: tags: @@ -1542,7 +1542,7 @@ paths: $ref: '#/components/schemas/Foo' responses: '200': - description: ok + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/jsonWithCharset': post: tags: @@ -1585,7 +1585,7 @@ paths: $ref: '#/components/schemas/JSONPatchRequest' responses: '200': - description: OK + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/deleteCoffee/{id}: delete: operationId: deleteCoffee @@ -1602,7 +1602,7 @@ paths: type: string responses: '200': - description: OK + $ref: '#/components/responses/SuccessDescriptionOnly' default: description: Unexpected error /fake/queryParamWithJsonContentType: @@ -1649,6 +1649,9 @@ servers: - 'v2' default: 'v2' components: + responses: + SuccessDescriptionOnly: + description: Success requestBodies: UserArray: content: From e94a32ba39b0309b6df4f80d0972dbc772a0f297 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 10:40:16 -0800 Subject: [PATCH 04/44] Refactor, eliminates response code, unused java props and methods removed --- .../openapitools/codegen/CodegenConfig.java | 2 +- .../codegen/CodegenOperation.java | 106 ++++------- .../openapitools/codegen/CodegenResponse.java | 45 +---- .../openapitools/codegen/DefaultCodegen.java | 176 +++--------------- .../codegen/DefaultGenerator.java | 10 +- .../languages/PythonClientCodegen.java | 2 +- .../main/resources/python/endpoint.handlebars | 16 +- .../docs/apis/tags/fake_api/delete_coffee.md | 2 +- .../apis/tags/fake_api/group_parameters.md | 2 +- .../fake_api/inline_additional_properties.md | 2 +- .../docs/apis/tags/fake_api/json_form_data.md | 2 +- .../docs/apis/tags/fake_api/json_patch.md | 2 +- .../apis/tags/fake_api/object_in_query.md | 2 +- .../apis/tags/fake_api/ref_object_in_query.md | 2 +- .../python/docs/apis/tags/pet_api/add_pet.md | 2 +- .../docs/apis/tags/user_api/logout_user.md | 2 +- 16 files changed, 85 insertions(+), 290 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java index 8c565157ba3..62160b04498 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java @@ -385,5 +385,5 @@ public interface CodegenConfig { String getBodyParameterName(CodegenOperation co); - CodegenResponse fromResponse(String responseCode, ApiResponse response, String sourceJsonPath); + CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath); } diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java index d99dc0b0623..836fa2b63bd 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java @@ -23,18 +23,13 @@ import java.util.stream.Collectors; public class CodegenOperation { - public final List responseHeaders = new ArrayList(); public boolean hasAuthMethods, hasConsumes, hasProduces, hasParams, hasOptionalParams, hasRequiredParams, - returnTypeIsPrimitive, returnSimpleType, subresourceOperation, isMap, - isArray, isMultipart, - isResponseBinary = false, isResponseFile = false, hasReference = false, defaultReturnType = false, + subresourceOperation, isMultipart, isRestfulIndex, isRestfulShow, isRestfulCreate, isRestfulUpdate, isRestfulDestroy, isRestful, isDeprecated, isCallbackRequest, uniqueItems, hasDefaultResponse = false, hasErrorResponseObject; // if 4xx, 5xx responses have at least one error object defined - public CodegenProperty returnProperty; - public String path, operationId, returnType, returnFormat, httpMethod, returnBaseType, - returnContainer, summary, unescapedNotes, notes, baseName; - public CodegenDiscriminator discriminator; + public String path, operationId, httpMethod, + summary, unescapedNotes, notes, baseName; public List> consumes, produces, prioritizedContentTypes; public List servers = new ArrayList(); public CodegenParameter bodyParam; @@ -50,7 +45,11 @@ public class CodegenOperation { public List optionalParams = new ArrayList(); public List authMethods; public Map tags; - public List responses = new ArrayList(); + public TreeMap responses = new TreeMap<>(); + public TreeMap statusCodeResponses = new TreeMap<>(); + public TreeMap wildcardCodeResponses = new TreeMap<>(); + + public TreeMap nonDefaultResponses = new TreeMap<>(); public CodegenResponse defaultResponse = null; public List callbacks = new ArrayList<>(); public Set imports = new HashSet(); @@ -167,15 +166,6 @@ public boolean getHasRequiredParams() { return nonEmpty(requiredParams); } - /** - * Check if there's at least one response header - * - * @return true if header response exists, false otherwise - */ - public boolean getHasResponseHeaders() { - return nonEmpty(responseHeaders); - } - /** * Check if there's at least one example parameter * @@ -185,21 +175,22 @@ public boolean getHasExamples() { return nonEmpty(examples); } - /** - * Check if there's a default response - * - * @return true if responses contain a default response, false otherwise - */ - public boolean getHasDefaultResponse() { - return responses.stream().anyMatch(response -> response.isDefault); - } - public boolean getAllResponsesAreErrors() { - return responses.stream().allMatch(response -> response.is4xx || response.is5xx); - } - - public List getNonDefaultResponses() { - return responses.stream().filter(response -> !response.isDefault).collect(Collectors.toList()); + if (responses.size() == 1 && defaultResponse != null) { + return false; + } + for (String code: nonDefaultResponses.keySet()) { + String firstNumber = code.substring(0, 1); + switch (firstNumber) { + case "1": case "2": case "3": + return false; + } + } + if (defaultResponse != null) { + // 404 + default, unable to tell if default is a success or an error status code + return false; + } + return true; } /** @@ -314,25 +305,15 @@ private boolean isMemberPath() { @Override public String toString() { final StringBuffer sb = new StringBuffer("CodegenOperation{"); - sb.append("responseHeaders=").append(responseHeaders); sb.append(", hasAuthMethods=").append(hasAuthMethods); sb.append(", hasConsumes=").append(hasConsumes); sb.append(", hasProduces=").append(hasProduces); sb.append(", hasParams=").append(hasParams); sb.append(", hasOptionalParams=").append(hasOptionalParams); sb.append(", hasRequiredParams=").append(hasRequiredParams); - sb.append(", returnTypeIsPrimitive=").append(returnTypeIsPrimitive); - sb.append(", returnSimpleType=").append(returnSimpleType); sb.append(", subresourceOperation=").append(subresourceOperation); - sb.append(", isMap=").append(isMap); - sb.append(", returnProperty=").append(returnProperty); - sb.append(", isArray=").append(isArray); sb.append(", isMultipart=").append(isMultipart); - sb.append(", isResponseBinary=").append(isResponseBinary); - sb.append(", isResponseFile=").append(isResponseFile); - sb.append(", hasReference=").append(hasReference); sb.append(", hasDefaultResponse=").append(hasDefaultResponse); - sb.append(", hasErrorResponseObject=").append(hasErrorResponseObject); sb.append(", isRestfulIndex=").append(isRestfulIndex); sb.append(", isRestfulShow=").append(isRestfulShow); sb.append(", isRestfulCreate=").append(isRestfulCreate); @@ -344,16 +325,12 @@ public String toString() { sb.append(", uniqueItems='").append(uniqueItems); sb.append(", path='").append(path).append('\''); sb.append(", operationId='").append(operationId).append('\''); - sb.append(", returnType='").append(returnType).append('\''); sb.append(", httpMethod='").append(httpMethod).append('\''); - sb.append(", returnBaseType='").append(returnBaseType).append('\''); - sb.append(", returnContainer='").append(returnContainer).append('\''); sb.append(", summary='").append(summary).append('\''); sb.append(", unescapedNotes='").append(unescapedNotes).append('\''); sb.append(", notes='").append(notes).append('\''); sb.append(", baseName='").append(baseName).append('\''); sb.append(", defaultResponse='").append(defaultResponse).append('\''); - sb.append(", discriminator=").append(discriminator); sb.append(", consumes=").append(consumes); sb.append(", produces=").append(produces); sb.append(", prioritizedContentTypes=").append(prioritizedContentTypes); @@ -371,6 +348,9 @@ public String toString() { sb.append(", authMethods=").append(authMethods); sb.append(", tags=").append(tags); sb.append(", responses=").append(responses); + sb.append(", statusCodeResponses=").append(statusCodeResponses); + sb.append(", wildcardCodeResponses=").append(wildcardCodeResponses); + sb.append(", nonDefaultResponses=").append(nonDefaultResponses); sb.append(", callbacks=").append(callbacks); sb.append(", imports=").append(imports); sb.append(", examples=").append(examples); @@ -397,17 +377,9 @@ public boolean equals(Object o) { hasParams == that.hasParams && hasOptionalParams == that.hasOptionalParams && hasRequiredParams == that.hasRequiredParams && - returnTypeIsPrimitive == that.returnTypeIsPrimitive && - returnSimpleType == that.returnSimpleType && subresourceOperation == that.subresourceOperation && - isMap == that.isMap && - isArray == that.isArray && isMultipart == that.isMultipart && - isResponseBinary == that.isResponseBinary && - isResponseFile == that.isResponseFile && - hasReference == that.hasReference && hasDefaultResponse == that.hasDefaultResponse && - hasErrorResponseObject == that.hasErrorResponseObject && isRestfulIndex == that.isRestfulIndex && isRestfulShow == that.isRestfulShow && isRestfulCreate == that.isRestfulCreate && @@ -417,20 +389,14 @@ public boolean equals(Object o) { isDeprecated == that.isDeprecated && isCallbackRequest == that.isCallbackRequest && uniqueItems == that.uniqueItems && - Objects.equals(returnProperty, that.returnProperty) && - Objects.equals(responseHeaders, that.responseHeaders) && Objects.equals(path, that.path) && Objects.equals(operationId, that.operationId) && - Objects.equals(returnType, that.returnType) && Objects.equals(httpMethod, that.httpMethod) && - Objects.equals(returnBaseType, that.returnBaseType) && - Objects.equals(returnContainer, that.returnContainer) && Objects.equals(summary, that.summary) && Objects.equals(unescapedNotes, that.unescapedNotes) && Objects.equals(notes, that.notes) && Objects.equals(baseName, that.baseName) && Objects.equals(defaultResponse, that.defaultResponse) && - Objects.equals(discriminator, that.discriminator) && Objects.equals(consumes, that.consumes) && Objects.equals(produces, that.produces) && Objects.equals(prioritizedContentTypes, that.prioritizedContentTypes) && @@ -448,6 +414,9 @@ public boolean equals(Object o) { Objects.equals(authMethods, that.authMethods) && Objects.equals(tags, that.tags) && Objects.equals(responses, that.responses) && + Objects.equals(statusCodeResponses, that.statusCodeResponses) && + Objects.equals(wildcardCodeResponses, that.wildcardCodeResponses) && + Objects.equals(nonDefaultResponses, that.nonDefaultResponses) && Objects.equals(callbacks, that.callbacks) && Objects.equals(imports, that.imports) && Objects.equals(examples, that.examples) && @@ -464,16 +433,17 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(responseHeaders, hasAuthMethods, hasConsumes, hasProduces, hasParams, hasOptionalParams, - hasRequiredParams, returnTypeIsPrimitive, returnSimpleType, subresourceOperation, isMap, - isArray, isMultipart, isResponseBinary, isResponseFile, hasReference, + return Objects.hash(hasAuthMethods, hasConsumes, hasProduces, hasParams, hasOptionalParams, + hasRequiredParams, subresourceOperation, + isMultipart, hasDefaultResponse, isRestfulIndex, isRestfulShow, isRestfulCreate, isRestfulUpdate, isRestfulDestroy, - isRestful, isDeprecated, isCallbackRequest, uniqueItems, path, operationId, returnType, httpMethod, - returnBaseType, returnContainer, summary, unescapedNotes, notes, baseName, defaultResponse, - discriminator, consumes, produces, prioritizedContentTypes, servers, bodyParam, allParams, bodyParams, - pathParams, queryParams, headerParams, formParams, cookieParams, requiredParams, returnProperty, optionalParams, + isRestful, isDeprecated, isCallbackRequest, uniqueItems, path, operationId, httpMethod, + summary, unescapedNotes, notes, baseName, defaultResponse, + consumes, produces, prioritizedContentTypes, servers, bodyParam, allParams, bodyParams, + pathParams, queryParams, headerParams, formParams, cookieParams, requiredParams, optionalParams, authMethods, tags, responses, callbacks, imports, examples, requestBodyExamples, externalDocs, vendorExtensions, nickname, operationIdOriginal, operationIdLowerCase, operationIdCamelCase, - operationIdSnakeCase, hasErrorResponseObject); + operationIdSnakeCase, statusCodeResponses, wildcardCodeResponses, + nonDefaultResponses); } } diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenResponse.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenResponse.java index 7ab198a967d..85eda4fa121 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenResponse.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenResponse.java @@ -20,15 +20,7 @@ import java.util.*; public class CodegenResponse { - public final List headers = new ArrayList(); private List responseHeaders = new ArrayList(); - public String code; - public boolean is1xx; - public boolean is2xx; - public boolean is3xx; - public boolean is4xx; - public boolean is5xx; - public boolean isDefault; public String message; public List> examples; public boolean hasHeaders; @@ -41,9 +33,8 @@ public class CodegenResponse { @Override public int hashCode() { - return Objects.hash(headers, code, message, examples, hasHeaders, + return Objects.hash(message, examples, hasHeaders, jsonSchema, vendorExtensions, - is1xx, is2xx, is3xx, is4xx, is5xx, isDefault, responseHeaders, content, ref, imports, refModule); } @@ -54,24 +45,15 @@ public boolean equals(Object o) { if (!(o instanceof CodegenResponse)) return false; CodegenResponse that = (CodegenResponse) o; return hasHeaders == that.hasHeaders && - is1xx == that.is1xx && - is2xx == that.is2xx && - is3xx == that.is3xx && - is4xx == that.is4xx && - is5xx == that.is5xx && - isDefault == that.isDefault && Objects.equals(imports, that.imports) && Objects.equals(ref, that.getRef()) && Objects.equals(content, that.getContent()) && Objects.equals(responseHeaders, that.getResponseHeaders()) && - Objects.equals(headers, that.headers) && - Objects.equals(code, that.code) && Objects.equals(message, that.message) && Objects.equals(examples, that.examples) && Objects.equals(jsonSchema, that.jsonSchema) && Objects.equals(vendorExtensions, that.vendorExtensions) && Objects.equals(refModule, that.getRefModule()); - } public LinkedHashMap getContent() { @@ -93,14 +75,6 @@ public void setResponseHeaders(List responseHeaders) { @Override public String toString() { final StringBuilder sb = new StringBuilder("CodegenResponse{"); - sb.append("headers=").append(headers); - sb.append(", code='").append(code).append('\''); - sb.append(", is1xx='").append(is1xx).append('\''); - sb.append(", is2xx='").append(is2xx).append('\''); - sb.append(", is3xx='").append(is3xx).append('\''); - sb.append(", is4xx='").append(is4xx).append('\''); - sb.append(", is5xx='").append(is5xx).append('\''); - sb.append(", isDefault='").append(isDefault).append('\''); sb.append(", message='").append(message).append('\''); sb.append(", examples=").append(examples); sb.append(", hasHeaders=").append(hasHeaders); @@ -115,23 +89,6 @@ public String toString() { return sb.toString(); } - // this is used in templates. Do not remove it. - @SuppressWarnings("unused") - public boolean isWildcard() { - return "0".equals(code) || "default".equals(code); - } - - /* - * Boolean value indicating whether the status code is a range - * - * @return True if the status code is a range (e.g. 2XX) - */ - public boolean isRange() { - if (code != null && code.length() == 3 && "XX".equalsIgnoreCase(code.substring(1))) - return true; - return false; - } - public String getRef() { return ref; } public void setRef(String ref) { this.ref=ref; } diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 7b05db8978e..dfa11cc97dc 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4136,21 +4136,6 @@ protected void handleMethodResponse(Operation operation, if (responseSchema != null) { CodegenProperty cm = fromProperty("response", responseSchema, false, false, null); - if (ModelUtils.isArraySchema(responseSchema)) { - ArraySchema as = (ArraySchema) responseSchema; - CodegenProperty innerProperty = fromProperty("response", getSchemaItems(as), false, false, null); - op.returnBaseType = innerProperty.baseType; - } else if (ModelUtils.isMapSchema(responseSchema)) { - CodegenProperty innerProperty = fromProperty("response", getAdditionalProperties(responseSchema), false, false, null); - op.returnBaseType = innerProperty.baseType; - } else { - if (cm.refClass != null) { - op.returnBaseType = cm.refClass; - } else { - op.returnBaseType = cm.baseType; - } - } - // check skipOperationExample, which can be set to true to avoid out of memory errors for large spec if (!isSkipOperationExample()) { // generate examples @@ -4162,41 +4147,7 @@ protected void handleMethodResponse(Operation operation, } op.examples = new ExampleGenerator(schemas, this.openAPI).generateFromResponseSchema(exampleStatusCode, responseSchema, getProducesInfo(this.openAPI, operation)); } - - op.returnType = cm.dataType; - op.returnFormat = cm.dataFormat; - op.hasReference = schemas != null && schemas.containsKey(op.returnBaseType); - - // lookup discriminator - Schema schema = null; - if (schemas != null) { - schema = schemas.get(op.returnBaseType); - } - if (schema != null) { - CodegenModel cmod = fromModel(op.returnBaseType, schema); - op.discriminator = cmod.discriminator; - } - - if (cm.isContainer) { - op.returnContainer = cm.containerType; - if ("map".equals(cm.containerType)) { - op.isMap = true; - } else if ("list".equalsIgnoreCase(cm.containerType)) { - op.isArray = true; - } else if ("array".equalsIgnoreCase(cm.containerType)) { - op.isArray = true; - } else if ("set".equalsIgnoreCase(cm.containerType)) { - op.isArray = true; - } - } else { - op.returnSimpleType = true; - } - if (languageSpecificPrimitives().contains(op.returnBaseType) || op.returnBaseType == null) { - op.returnTypeIsPrimitive = true; - } - op.returnProperty = cm; } - addHeaders(methodResponse, op.responseHeaders, null); } public String getBodyParameterName(CodegenOperation co) { @@ -4309,46 +4260,28 @@ public CodegenOperation fromOperation(String path, String key = operationGetResponsesEntry.getKey(); ApiResponse response = operationGetResponsesEntry.getValue(); addProducesInfo(response, op); - String usedSourceJsonPath = sourceJsonPath + "/responses"; - CodegenResponse r = fromResponse(key, response, usedSourceJsonPath); - - op.responses.add(r); - // TODO remove this, the response should not know what is inside it - if (r.is2xx && r.getContent() != null) { - for (Entry entry: r.getContent().entrySet()) { - CodegenMediaType cm = entry.getValue(); - CodegenProperty cp = cm.getSchema(); - if (cp != null) { - if (cp.isBinary) { - op.isResponseBinary = Boolean.TRUE; - } else if (cp.isFile) { - op.isResponseFile = Boolean.TRUE; - } - } - } - } - if (Boolean.TRUE.equals(r.isDefault)) { - op.defaultReturnType = Boolean.TRUE; + String usedSourceJsonPath = sourceJsonPath + "/responses/" + key; + CodegenResponse r = fromResponse(response, usedSourceJsonPath); + + op.responses.put(key, r); + if ("default".equals(key)) { op.defaultResponse = r; - } - // check if any 4xx or 5xx response has an error response object defined - if ((Boolean.TRUE.equals(r.is4xx) || Boolean.TRUE.equals(r.is5xx)) && r.getContent() != null) { - for (Entry entry: r.getContent().entrySet()) { - CodegenMediaType cm = entry.getValue(); - CodegenProperty cp = cm.getSchema(); - if (cp.isArray || cp.isMap || cp.refClass != null) { - op.hasErrorResponseObject = Boolean.TRUE; - break; - } + } else { + op.nonDefaultResponses.put(key, r); + if (key.endsWith("XX") && key.length() == 3) { + String firstNumber = key.substring(0, 1); + op.wildcardCodeResponses.put(firstNumber, r); + } else { + op.statusCodeResponses.put(key, r); } } } - op.responses.sort((a, b) -> { - int aScore = a.isWildcard() ? 2 : a.isRange() ? 1 : 0; - int bScore = b.isWildcard() ? 2 : b.isRange() ? 1 : 0; - return Integer.compare(aScore, bScore); - }); + // sort them + op.responses = new TreeMap<>(op.responses); + op.nonDefaultResponses = new TreeMap<>(op.nonDefaultResponses); + op.statusCodeResponses = new TreeMap<>(op.statusCodeResponses); + op.wildcardCodeResponses = new TreeMap<>(op.wildcardCodeResponses); if (methodResponse != null) { handleMethodResponse(operation, schemas, op, methodResponse, importMapping); @@ -4524,39 +4457,12 @@ public boolean isParameterNameUnique(CodegenParameter p, List /** * Convert OAS Response object to Codegen Response object * - * @param responseCode HTTP response code * @param response OAS Response object * @return Codegen Response object */ - public CodegenResponse fromResponse(String responseCode, ApiResponse response, String sourceJsonPath) { + public CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath) { CodegenResponse r = CodegenModelFactory.newInstance(CodegenModelType.RESPONSE); - if ("default".equals(responseCode) || "defaultResponse".equals(responseCode)) { - r.code = "0"; - r.isDefault = true; - } else { - r.code = responseCode; - switch (r.code.charAt(0)) { - case '1': - r.is1xx = true; - break; - case '2': - r.is2xx = true; - break; - case '3': - r.is3xx = true; - break; - case '4': - r.is4xx = true; - break; - case '5': - r.is5xx = true; - break; - default: - throw new RuntimeException("Invalid response code " + responseCode); - } - } - r.message = escapeText(response.getDescription()); // TODO need to revise and test examples in responses // ApiResponse does not support examples at the moment @@ -4566,17 +4472,12 @@ public CodegenResponse fromResponse(String responseCode, ApiResponse response, S r.vendorExtensions.putAll(response.getExtensions()); } String usedSourceJsonPath = sourceJsonPath + "/"; - if (r.code.equals("0")) { - usedSourceJsonPath = usedSourceJsonPath + "default"; - } else { - usedSourceJsonPath = usedSourceJsonPath + r.code; - } - // TODO remove these two because the info is in responseHeaders - addHeaders(response, r.headers, usedSourceJsonPath + "/headers"); - r.hasHeaders = !r.headers.isEmpty(); Map headers = response.getHeaders(); if (headers != null) { + if (!response.getHeaders().isEmpty()) { + r.hasHeaders = true; + } List responseHeaders = new ArrayList<>(); for (Entry entry : headers.entrySet()) { String headerName = entry.getKey(); @@ -5057,41 +4958,6 @@ protected List> toExamples(Map examples) { return output; } - /** - * Add headers to codegen property - * - * @param response API response - * @param properties list of codegen property - */ - protected void addHeaders(ApiResponse response, List properties, String sourceJsonPath) { - if (response.getHeaders() != null) { - for (Map.Entry headerEntry : response.getHeaders().entrySet()) { - String description = headerEntry.getValue().getDescription(); - // follow the $ref - Header header = ModelUtils.getReferencedHeader(this.openAPI, headerEntry.getValue()); - - Schema schema; - if (header.getSchema() == null) { - LOGGER.warn("No schema defined for Header '{}', using a String schema", headerEntry.getKey()); - schema = new StringSchema(); - } else { - schema = header.getSchema(); - } - String headerName = headerEntry.getKey(); - String usedSourceJsonPath = sourceJsonPath + "/" + headerName; - CodegenProperty cp = fromProperty(headerName, schema, false, false, usedSourceJsonPath); - cp.setDescription(escapeText(description)); - cp.setUnescapedDescription(description); - if (header.getRequired() != null) { - cp.setRequired(header.getRequired()); - } else { - cp.setRequired(false); - } - properties.add(cp); - } - } - } - /** * Add operation to group * diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 6424a5cfd9a..8f43e5ec696 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -540,10 +540,12 @@ void generatePaths(List files, Map> operati } } - for (CodegenResponse response: co.responses) { + for (Map.Entry responseEntry: co.responses.entrySet()) { // paths.some_path.post.response_for_200.__init__.py (file per response) // response is a package because responses have Headers which can be refed // so each inline header should be a module in the response package + String code = responseEntry.getKey(); + CodegenResponse response = responseEntry.getValue(); for (Map.Entry entry: config.pathEndpointResponseTemplateFiles().entrySet()) { String templateFile = entry.getKey(); @@ -551,7 +553,7 @@ void generatePaths(List files, Map> operati Map responseMap = new HashMap<>(); responseMap.put("response", response); responseMap.put("packageName", packageName); - String responseModuleName = (response.isDefault)? "response_for_default" : "response_for_"+response.code; + String responseModuleName = (code.equals("default"))? "response_for_default" : "response_for_"+code; String responseFilename = packageFilename(Arrays.asList("paths", pathModuleName, co.httpMethod, responseModuleName, renderedOutputFilename)); pathsFiles.add(Arrays.asList(responseMap, templateFile, responseFilename)); for (CodegenParameter header: response.getResponseHeaders()) { @@ -689,11 +691,11 @@ private TreeMap generateResponses(List files) { String componentName = responseEntry.getKey(); ApiResponse apiResponse = responseEntry.getValue(); String sourceJsonPath = "#/components/responses/" + componentName; - CodegenResponse response = config.fromResponse(null, apiResponse, sourceJsonPath); + CodegenResponse response = config.fromResponse(apiResponse, sourceJsonPath); // use refRequestBody so the refModule info will be contained inside the parameter ApiResponse specRefApiResponse = new ApiResponse(); specRefApiResponse.set$ref(sourceJsonPath); - CodegenResponse refResponse = config.fromResponse(null, specRefApiResponse, null); + CodegenResponse refResponse = config.fromResponse(specRefApiResponse, null); responses.put(componentName, refResponse); Boolean generateResponses = Boolean.TRUE; for (Map.Entry entry : config.responseTemplateFiles().entrySet()) { 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 fc1f665427e..c74076e6a12 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 @@ -715,7 +715,7 @@ public OperationsMap postProcessOperationsWithModels(OperationsMap objs, List operations = val.getOperation(); for (CodegenOperation operation : operations) { fixSchemaImports(operation.imports); - for (CodegenResponse response: operation.responses) { + for (CodegenResponse response: operation.responses.values()) { fixSchemaImports(response.imports); } } 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 f17293c96be..51e8b924aad 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 @@ -102,18 +102,18 @@ _servers = ( {{#if defaultResponse}} default_response = response_for_default.response {{/if}} -{{#if getNonDefaultResponses}} +{{#if nonDefaultResponses}} __StatusCodeToResponse = typing_extensions.TypedDict( '__StatusCodeToResponse', { -{{#each getNonDefaultResponses}} - '{{code}}': api_client.OpenApiResponse[response_for_{{code}}.ApiResponse], +{{#each nonDefaultResponses}} + '{{@key}}': api_client.OpenApiResponse[response_for_{{@key}}.ApiResponse], {{/each}} } ) _status_code_to_response = __StatusCodeToResponse({ -{{#each getNonDefaultResponses}} - '{{code}}': response_for_{{code}}.response, +{{#each nonDefaultResponses}} + '{{@key}}': response_for_{{@key}}.response, {{/each}} }) {{/if}} @@ -263,12 +263,12 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: -{{#if getNonDefaultResponses}} +{{#if nonDefaultResponses}} status = str(response.status) if status in _status_code_to_response: status: typing_extensions.Literal[ -{{#each getNonDefaultResponses}} - '{{code}}', +{{#each nonDefaultResponses}} + '{{@key}}', {{/each}} ] api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 55257dcc609..0a91d3d7e73 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -63,7 +63,7 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | OK +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Unexpected error #### response_for_200.ApiResponse diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index b5783df65f2..01ad8de4897 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -146,7 +146,7 @@ str, | str, | | must be one of ["true", "false", ] Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | succeeded +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index c299f3a72ed..8f4b20dad64 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -61,7 +61,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 4ee6365c0c4..8f4cc9aed1f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -64,7 +64,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index e6e30a3d6db..6b5c3b297d8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -57,7 +57,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | OK +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index 35da5e17462..04bf81e35ce 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -70,7 +70,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | ok +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index 2b435a4f09d..2801cf3e3cf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -63,7 +63,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | ok +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index c9127bf5fbf..cea0ad3411c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -137,7 +137,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Ok +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success 405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input #### response_for_200.ApiResponse diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 4b653ea0b3c..aa52e8bd682 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -36,7 +36,7 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Success #### response_for_default.ApiResponse Name | Type | Description | Notes From af8af89129d3ee04163d0f7ab28b2fb52d4e236f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:03:46 -0800 Subject: [PATCH 05/44] Fixes java ref to vars that are gone, creates template --- .../AbstractJavaJAXRSServerCodegen.java | 24 ----------- .../main/resources/python/endpoint.handlebars | 2 +- .../resources/python/endpoint_args.handlebars | 20 +--------- .../endpoint_response_type_hint.handlebars | 40 +++++++++++++++++++ .../petstore/python/.openapi-generator/FILES | 1 + .../python/.openapi-generator/VERSION | 2 +- .../openapi3/client/petstore/python/README.md | 1 - .../call_123_test_special_tags.md | 9 ++--- .../docs/apis/tags/default_api/foo_get.md | 9 ++--- ...ditional_properties_with_array_of_enums.md | 9 ++--- .../docs/apis/tags/fake_api/array_model.md | 9 ++--- .../docs/apis/tags/fake_api/array_of_enums.md | 9 ++--- .../tags/fake_api/body_with_file_schema.md | 4 +- .../tags/fake_api/body_with_query_params.md | 4 +- .../python/docs/apis/tags/fake_api/boolean.md | 9 ++--- .../tags/fake_api/case_sensitive_params.md | 4 +- .../docs/apis/tags/fake_api/client_model.md | 9 ++--- .../composed_one_of_different_types.md | 9 ++--- .../docs/apis/tags/fake_api/delete_coffee.md | 8 ++-- .../apis/tags/fake_api/endpoint_parameters.md | 8 ++-- .../apis/tags/fake_api/enum_parameters.md | 12 +++--- .../apis/tags/fake_api/fake_health_get.md | 9 ++--- .../apis/tags/fake_api/group_parameters.md | 4 +- .../fake_api/inline_additional_properties.md | 4 +- .../apis/tags/fake_api/inline_composition.md | 11 +++-- .../docs/apis/tags/fake_api/json_form_data.md | 4 +- .../docs/apis/tags/fake_api/json_patch.md | 4 +- .../apis/tags/fake_api/json_with_charset.md | 9 ++--- .../python/docs/apis/tags/fake_api/mammal.md | 9 ++--- .../tags/fake_api/number_with_validations.md | 9 ++--- .../apis/tags/fake_api/object_in_query.md | 4 +- .../fake_api/object_model_with_ref_props.md | 9 ++--- .../tags/fake_api/parameter_collisions.md | 10 ++--- .../query_param_with_json_content_type.md | 9 ++--- .../query_parameter_collection_format.md | 4 +- .../apis/tags/fake_api/ref_object_in_query.md | 4 +- .../tags/fake_api/response_without_schema.md | 4 +- .../python/docs/apis/tags/fake_api/string.md | 9 ++--- .../docs/apis/tags/fake_api/string_enum.md | 9 ++--- .../tags/fake_api/upload_download_file.md | 9 ++--- .../docs/apis/tags/fake_api/upload_file.md | 9 ++--- .../docs/apis/tags/fake_api/upload_files.md | 9 ++--- .../fake_classname_tags123_api/classname.md | 9 ++--- .../python/docs/apis/tags/pet_api/add_pet.md | 8 ++-- .../docs/apis/tags/pet_api/delete_pet.md | 4 +- .../apis/tags/pet_api/find_pets_by_status.md | 15 ++++--- .../apis/tags/pet_api/find_pets_by_tags.md | 15 ++++--- .../docs/apis/tags/pet_api/get_pet_by_id.md | 19 +++++---- .../docs/apis/tags/pet_api/update_pet.md | 12 +++--- .../apis/tags/pet_api/update_pet_with_form.md | 4 +- .../pet_api/upload_file_with_required_file.md | 10 ++--- .../docs/apis/tags/pet_api/upload_image.md | 10 ++--- .../docs/apis/tags/store_api/delete_order.md | 8 ++-- .../docs/apis/tags/store_api/get_inventory.md | 9 ++--- .../apis/tags/store_api/get_order_by_id.md | 19 +++++---- .../docs/apis/tags/store_api/place_order.md | 15 ++++--- .../docs/apis/tags/user_api/create_user.md | 4 +- .../user_api/create_users_with_array_input.md | 4 +- .../user_api/create_users_with_list_input.md | 4 +- .../docs/apis/tags/user_api/delete_user.md | 8 ++-- .../apis/tags/user_api/get_user_by_name.md | 19 +++++---- .../docs/apis/tags/user_api/login_user.md | 27 ++++++------- .../docs/apis/tags/user_api/logout_user.md | 4 +- .../docs/apis/tags/user_api/update_user.md | 8 ++-- .../success_description_only_response.py | 28 +++++++++++++ .../another_fake_dummy/patch/__init__.py | 11 +---- .../another_fake_dummy/patch/__init__.pyi | 11 +---- .../paths/fake/delete/__init__.py | 8 +--- .../paths/fake/delete/__init__.pyi | 8 +--- .../petstore_api/paths/fake/get/__init__.py | 13 +----- .../petstore_api/paths/fake/get/__init__.pyi | 13 +----- .../petstore_api/paths/fake/patch/__init__.py | 11 +---- .../paths/fake/patch/__init__.pyi | 11 +---- .../petstore_api/paths/fake/post/__init__.py | 13 +----- .../petstore_api/paths/fake/post/__init__.pyi | 13 +----- .../get/__init__.py | 11 +---- .../get/__init__.pyi | 11 +---- .../put/__init__.py | 11 +---- .../put/__init__.pyi | 11 +---- .../put/__init__.py | 11 +---- .../put/__init__.pyi | 11 +---- .../put/__init__.py | 8 +--- .../put/__init__.pyi | 8 +--- .../fake_classname_test/patch/__init__.py | 11 +---- .../fake_classname_test/patch/__init__.pyi | 11 +---- .../fake_delete_coffee_id/delete/__init__.py | 16 +------- .../fake_delete_coffee_id/delete/__init__.pyi | 16 +------- .../paths/fake_health/get/__init__.py | 8 +--- .../paths/fake_health/get/__init__.pyi | 8 +--- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../fake_inline_composition/post/__init__.py | 14 +------ .../fake_inline_composition/post/__init__.pyi | 14 +------ .../paths/fake_json_form_data/get/__init__.py | 11 +---- .../fake_json_form_data/get/__init__.pyi | 11 +---- .../paths/fake_json_patch/patch/__init__.py | 11 +---- .../paths/fake_json_patch/patch/__init__.pyi | 11 +---- .../fake_json_with_charset/post/__init__.py | 11 +---- .../fake_json_with_charset/post/__init__.pyi | 11 +---- .../paths/fake_obj_in_query/get/__init__.py | 8 +--- .../paths/fake_obj_in_query/get/__init__.pyi | 8 +--- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../get/__init__.py | 8 +--- .../get/__init__.pyi | 8 +--- .../fake_ref_obj_in_query/get/__init__.py | 8 +--- .../fake_ref_obj_in_query/get/__init__.pyi | 8 +--- .../fake_refs_array_of_enums/post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../fake_refs_arraymodel/post/__init__.py | 11 +---- .../fake_refs_arraymodel/post/__init__.pyi | 11 +---- .../paths/fake_refs_boolean/post/__init__.py | 11 +---- .../paths/fake_refs_boolean/post/__init__.pyi | 11 +---- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../paths/fake_refs_enum/post/__init__.py | 11 +---- .../paths/fake_refs_enum/post/__init__.pyi | 11 +---- .../paths/fake_refs_mammal/post/__init__.py | 11 +---- .../paths/fake_refs_mammal/post/__init__.pyi | 11 +---- .../paths/fake_refs_number/post/__init__.py | 11 +---- .../paths/fake_refs_number/post/__init__.pyi | 11 +---- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../paths/fake_refs_string/post/__init__.py | 11 +---- .../paths/fake_refs_string/post/__init__.pyi | 11 +---- .../get/__init__.py | 8 +--- .../get/__init__.pyi | 8 +--- .../fake_test_query_paramters/put/__init__.py | 8 +--- .../put/__init__.pyi | 8 +--- .../post/__init__.py | 11 +---- .../post/__init__.pyi | 11 +---- .../paths/fake_upload_file/post/__init__.py | 11 +---- .../paths/fake_upload_file/post/__init__.pyi | 11 +---- .../paths/fake_upload_files/post/__init__.py | 11 +---- .../paths/fake_upload_files/post/__init__.pyi | 11 +---- .../petstore_api/paths/foo/get/__init__.py | 23 +++++++---- .../petstore_api/paths/foo/get/__init__.pyi | 16 ++++---- .../petstore_api/paths/pet/post/__init__.py | 16 +------- .../petstore_api/paths/pet/post/__init__.pyi | 16 +------- .../petstore_api/paths/pet/put/__init__.py | 6 +-- .../petstore_api/paths/pet/put/__init__.pyi | 6 +-- .../paths/pet_find_by_status/get/__init__.py | 10 +---- .../paths/pet_find_by_status/get/__init__.pyi | 10 +---- .../paths/pet_find_by_tags/get/__init__.py | 10 +---- .../paths/pet_find_by_tags/get/__init__.pyi | 10 +---- .../paths/pet_pet_id/delete/__init__.py | 2 +- .../paths/pet_pet_id/delete/__init__.pyi | 2 +- .../paths/pet_pet_id/get/__init__.py | 12 ++---- .../paths/pet_pet_id/get/__init__.pyi | 12 ++---- .../paths/pet_pet_id/post/__init__.py | 2 +- .../paths/pet_pet_id/post/__init__.pyi | 2 +- .../pet_pet_id_upload_image/post/__init__.py | 11 +---- .../pet_pet_id_upload_image/post/__init__.pyi | 11 +---- .../paths/store_inventory/get/__init__.py | 8 +--- .../paths/store_inventory/get/__init__.pyi | 8 +--- .../paths/store_order/post/__init__.py | 13 +----- .../paths/store_order/post/__init__.pyi | 13 +----- .../store_order_order_id/delete/__init__.py | 4 +- .../store_order_order_id/delete/__init__.pyi | 4 +- .../store_order_order_id/get/__init__.py | 12 ++---- .../store_order_order_id/get/__init__.pyi | 12 ++---- .../petstore_api/paths/user/post/__init__.py | 26 +++++++----- .../petstore_api/paths/user/post/__init__.pyi | 19 ++++----- .../user_create_with_array/post/__init__.py | 26 +++++++----- .../user_create_with_array/post/__init__.pyi | 19 ++++----- .../user_create_with_list/post/__init__.py | 26 +++++++----- .../user_create_with_list/post/__init__.pyi | 19 ++++----- .../paths/user_login/get/__init__.py | 10 +---- .../paths/user_login/get/__init__.pyi | 10 +---- .../paths/user_logout/get/__init__.py | 23 +++++++---- .../paths/user_logout/get/__init__.pyi | 16 ++++---- .../paths/user_username/delete/__init__.py | 10 +---- .../paths/user_username/delete/__init__.pyi | 10 +---- .../paths/user_username/get/__init__.py | 12 ++---- .../paths/user_username/get/__init__.pyi | 12 ++---- .../paths/user_username/put/__init__.py | 4 +- .../paths/user_username/put/__init__.pyi | 4 +- .../test_another_fake_dummy/test_patch.py | 4 +- .../test/test_paths/test_fake/test_delete.py | 2 +- .../test/test_paths/test_fake/test_get.py | 2 +- .../test/test_paths/test_fake/test_patch.py | 4 +- .../test/test_paths/test_fake/test_post.py | 2 +- .../test_get.py | 4 +- .../test_put.py | 2 +- .../test_put.py | 2 +- .../test_put.py | 2 +- .../test_fake_classname_test/test_patch.py | 4 +- .../test_fake_delete_coffee_id/test_delete.py | 2 +- .../test_paths/test_fake_health/test_get.py | 4 +- .../test_post.py | 2 +- .../test_fake_inline_composition/test_post.py | 6 +-- .../test_fake_json_form_data/test_get.py | 2 +- .../test_fake_json_patch/test_patch.py | 2 +- .../test_fake_json_with_charset/test_post.py | 4 +- .../test_fake_obj_in_query/test_get.py | 2 +- .../test_post.py | 4 +- .../test_post.py | 4 +- .../test_get.py | 4 +- .../test_fake_ref_obj_in_query/test_get.py | 2 +- .../test_post.py | 4 +- .../test_fake_refs_arraymodel/test_post.py | 4 +- .../test_fake_refs_boolean/test_post.py | 4 +- .../test_post.py | 4 +- .../test_fake_refs_enum/test_post.py | 4 +- .../test_fake_refs_mammal/test_post.py | 4 +- .../test_fake_refs_number/test_post.py | 4 +- .../test_post.py | 4 +- .../test_fake_refs_string/test_post.py | 4 +- .../test_get.py | 2 +- .../test_put.py | 2 +- .../test_post.py | 4 +- .../test_fake_upload_file/test_post.py | 4 +- .../test_fake_upload_files/test_post.py | 4 +- .../test/test_paths/test_foo/test_get.py | 4 +- .../test/test_paths/test_pet/test_post.py | 2 +- .../test/test_paths/test_pet/test_put.py | 2 +- .../test_pet_find_by_status/test_get.py | 6 +-- .../test_pet_find_by_tags/test_get.py | 6 +-- .../test_paths/test_pet_pet_id/test_delete.py | 2 +- .../test_paths/test_pet_pet_id/test_get.py | 6 +-- .../test_paths/test_pet_pet_id/test_post.py | 2 +- .../test_pet_pet_id_upload_image/test_post.py | 4 +- .../test_store_inventory/test_get.py | 4 +- .../test_paths/test_store_order/test_post.py | 6 +-- .../test_store_order_order_id/test_delete.py | 2 +- .../test_store_order_order_id/test_get.py | 6 +-- .../test/test_paths/test_user/test_post.py | 2 +- .../test_user_create_with_array/test_post.py | 2 +- .../test_user_create_with_list/test_post.py | 2 +- .../test_paths/test_user_login/test_get.py | 6 +-- .../test_paths/test_user_logout/test_get.py | 2 +- .../test_user_username/test_delete.py | 2 +- .../test_paths/test_user_username/test_get.py | 6 +-- .../test_paths/test_user_username/test_put.py | 2 +- 236 files changed, 659 insertions(+), 1417 deletions(-) create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars create mode 100644 samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaJAXRSServerCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaJAXRSServerCodegen.java index 014f5c2a8a6..256901fd5e9 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaJAXRSServerCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/AbstractJavaJAXRSServerCodegen.java @@ -217,30 +217,6 @@ static OperationsMap jaxrsPostProcessOperations(OperationsMap objs) { } } - List responses = operation.responses; - if (responses != null) { - for (CodegenResponse resp : responses) { - if ("0".equals(resp.code)) { - resp.code = "200"; - } - } - } - - if (operation.returnBaseType == null) { - operation.returnType = "void"; - operation.returnBaseType = "Void"; - // set vendorExtensions.x-java-is-response-void to true as returnBaseType is set to "Void" - operation.vendorExtensions.put("x-java-is-response-void", true); - } - - if ("array".equals(operation.returnContainer)) { - operation.returnContainer = "List"; - } else if ("set".equals(operation.returnContainer)) { - operation.returnContainer = "Set"; - } else if ("map".equals(operation.returnContainer)) { - operation.returnContainer = "Map"; - } - if (commonPath == null) { commonPath = operation.path; } else { 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 51e8b924aad..5e7d94f9374 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 @@ -25,7 +25,7 @@ from {{packageName}}.components.request_bodies import {{refModule}} as request_b from .. import path {{/unless}} {{#each responses}} -from . import response_for_{{#if isDefault}}default{{else}}{{code}}{{/if}} +from . import response_for_{{#eq @key "default"}}default{{else}}{{@key}}{{/eq}} {{/each}} {{#with bodyParam}} {{#unless refModule}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_args.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_args.handlebars index 59f81e17694..6288be8d9c2 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_args.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_args.handlebars @@ -115,30 +115,14 @@ {{/eq}} {{#eq skipDeserialization "False"}} ) -> {{#if getAllResponsesAreErrors}}api_client.ApiResponseWithoutDeserialization: ...{{else}}typing.Union[ - {{#each responses}} - {{#if isDefault}} - response_for_default.ApiResponse, - {{else}} - {{#if is2xx}} - response_for_{{code}}.ApiResponse, - {{/if}} - {{/if}} - {{/each}} + {{> endpoint_response_type_hint }} ]: ... {{/if}} {{/eq}} {{#eq skipDeserialization "null"}} {{#if isOverload}} ) -> typing.Union[ - {{#each responses}} - {{#if isDefault}} - response_for_default.ApiResponse, - {{else}} - {{#if is2xx}} - response_for_{{code}}.ApiResponse, - {{/if}} - {{/if}} - {{/each}} + {{> endpoint_response_type_hint }} api_client.ApiResponseWithoutDeserialization, ]: ... {{else}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars new file mode 100644 index 00000000000..92fdd108850 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars @@ -0,0 +1,40 @@ +{{#if defaultResponse}} +response_for_default.ApiResponse, +{{/if}} +{{#each statusCodeResponses}} +{{#eq @key "200"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "201"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "202"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "203"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "204"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "205"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "206"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "207"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "208"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{#eq @key "226"}} +response_for_{{@key}}.ApiResponse, +{{/eq}} +{{/each}} +{{#each wildcardCodeResponses}} +{{#eq @key "2"}} +response_for_{{@key}}xx.ApiResponse, +{{/eq}} +{{/each}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index 2cd2b8cd431..86aad5416b2 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -262,6 +262,7 @@ petstore_api/components/request_bodies/__init__.py petstore_api/components/request_bodies/client_request_body.py petstore_api/components/request_bodies/pet_request_body.py petstore_api/components/request_bodies/user_array_request_body.py +petstore_api/components/responses/success_description_only_response.py petstore_api/components/schema/__init__.py petstore_api/components/schema/abstract_step_message.py petstore_api/components/schema/abstract_step_message.pyi 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/README.md b/samples/openapi3/client/petstore/python/README.md index 2160db7a7f4..6d07d5b32f3 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -159,7 +159,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.call_123_test_special_tags( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling AnotherFakeApi->call_123_test_special_tags: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index ce58f892ce3..052b5b2e724 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.call_123_test_special_tags( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling AnotherFakeApi->call_123_test_special_tags: %s\n" % e) ``` @@ -52,16 +51,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 145df528442..dcd331f54d2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -23,7 +23,6 @@ with petstore_api.ApiClient(configuration) as api_client: # example, this endpoint has no required or optional parameters try: api_response = api_instance.foo_get() - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling DefaultApi->foo_get: %s\n" % e) ``` @@ -35,16 +34,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | response + | [response_for_.ApiResponse](#response_for_.ApiResponse) | response -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_0.application_json](#response_for_0.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_0.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index ef280839dd1..bd8153c127f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.additional_properties_with_array_of_enums( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->additional_properties_with_array_of_enums: %s\n" % e) ``` @@ -59,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Got object with additional properties with array of enums + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Got object with additional properties with array of enums -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**AdditionalPropertiesWithArrayOfEnums**](../../../components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index cebe7b41e4f..2cca654b854 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -30,7 +30,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.array_model( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->array_model: %s\n" % e) ``` @@ -57,16 +56,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**AnimalFarm**](../../../components/schema/animal_farm.AnimalFarm.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index dabd1f22bd5..953bb156b27 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -30,7 +30,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.array_of_enums( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->array_of_enums: %s\n" % e) ``` @@ -57,16 +56,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Got named array of enums + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Got named array of enums -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ArrayOfEnums**](../../../components/schema/array_of_enums.ArrayOfEnums.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index d08986d4e8d..39dbc246df9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -60,9 +60,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index dcd61df3f2c..e4ead1645d5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -85,9 +85,9 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index 25c8904d430..5424aa1323a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.boolean( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->boolean: %s\n" % e) ``` @@ -55,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output boolean + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output boolean -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Boolean**](../../../components/schema/boolean.Boolean.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index 30e7b8d6f10..ed8589bb1e0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -80,9 +80,9 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index 49496cf533e..e01eb2a753c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.client_model( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->client_model: %s\n" % e) ``` @@ -52,16 +51,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index 8914a28cdbf..e8118b70814 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.composed_one_of_different_types( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->composed_one_of_different_types: %s\n" % e) ``` @@ -55,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ComposedOneOfDifferentTypes**](../../../components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 0a91d3d7e73..bd2e15b31e0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Unexpected error + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Unexpected error -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 5e8f67d8469..13b824a5551 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -101,17 +101,17 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 2520a93e2b4..ddc661e546c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -172,24 +172,24 @@ str, | str, | | must be one of ["_abc", "-efg", "(xyz)", ] if omitted the ser Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_404.application_json](#response_for_404.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_404.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 3963f59b05c..210d3e157af 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -25,7 +25,6 @@ with petstore_api.ApiClient(configuration) as api_client: try: # Health check endpoint api_response = api_instance.fake_health_get() - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->fake_health_get: %s\n" % e) ``` @@ -37,16 +36,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | The instance started successfully + | [response_for_.ApiResponse](#response_for_.ApiResponse) | The instance started successfully -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**HealthCheckResult**](../../../components/schema/health_check_result.HealthCheckResult.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index 01ad8de4897..cc3838c0320 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -146,9 +146,9 @@ str, | str, | | must be one of ["true", "false", ] Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index 8f4b20dad64..eb4ce67f9bd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -61,9 +61,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index cf225ef3a9b..f07efe119d1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -35,7 +35,6 @@ with petstore_api.ApiClient(configuration) as api_client: query_params=query_params, body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->inline_composition: %s\n" % e) ``` @@ -171,16 +170,16 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), [response_for_200.multipart_form_data](#response_for_200.multipart_form_data), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), [response_for_.multipart_form_data](#response_for_.multipart_form_data), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -200,7 +199,7 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -# response_for_200.multipart_form_data +# response_for_..multipart_form_data ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 8f4cc9aed1f..7cac0800080 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -64,9 +64,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 6b5c3b297d8..66445f9736d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -57,9 +57,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index bfb35fcdf05..54a801ad26b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.json_with_charset( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->json_with_charset: %s\n" % e) ``` @@ -56,16 +55,16 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json_charsetutf_8](#response_for_200.application_json_charsetutf_8), ] | | +body | typing.Union[[response_for_.application_json_charsetutf_8](#response_for_.application_json_charsetutf_8), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json_charsetutf_8 +# response_for_..application_json_charsetutf_8 ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index 304f7d1b21d..81396957f2f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.mammal( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->mammal: %s\n" % e) ``` @@ -59,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output mammal + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output mammal -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Mammal**](../../../components/schema/mammal.Mammal.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index e70d26ead41..df5f1f062d3 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.number_with_validations( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->number_with_validations: %s\n" % e) ``` @@ -55,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output number + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output number -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**NumberWithValidations**](../../../components/schema/number_with_validations.NumberWithValidations.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index 04bf81e35ce..c1146f78ec2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -70,9 +70,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index 3d0bd561abf..35e492be4e6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.object_model_with_ref_props( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->object_model_with_ref_props: %s\n" % e) ``` @@ -59,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ObjectModelWithRefProps**](../../../components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index 99c12cfd5d9..51dedbc2ca9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -43,7 +43,6 @@ with petstore_api.ApiClient(configuration) as api_client: header_params=header_params, cookie_params=cookie_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->parameter_collisions: %s\n" % e) @@ -85,7 +84,6 @@ with petstore_api.ApiClient(configuration) as api_client: cookie_params=cookie_params, body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->parameter_collisions: %s\n" % e) ``` @@ -294,16 +292,16 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 88286f51597..79cdffea87d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -30,7 +30,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.query_param_with_json_content_type( query_params=query_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->query_param_with_json_content_type: %s\n" % e) ``` @@ -57,16 +56,16 @@ someParam | [parameter_0.schema](#parameter_0.schema) | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index ae7a58d6cb7..fa9ac0c8006 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -141,9 +141,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index 2801cf3e3cf..c3e27f21c25 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -63,9 +63,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index 3551eb6e224..6036440b9ae 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -36,9 +36,9 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | contents without schema definition + | [response_for_.ApiResponse](#response_for_.ApiResponse) | contents without schema definition -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index eb94880ef47..a263e787bf4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.string( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->string: %s\n" % e) ``` @@ -55,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output string + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output string -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**String**](../../../components/schema/string.String.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 05c8997cd17..65cb20aa187 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.string_enum( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->string_enum: %s\n" % e) ``` @@ -55,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output enum + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output enum -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**StringEnum**](../../../components/schema/string_enum.StringEnum.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index 26d6ca25332..1f8cae8eb76 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -28,7 +28,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_download_file( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_download_file: %s\n" % e) ``` @@ -58,16 +57,16 @@ bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_octet_stream](#response_for_200.application_octet_stream), ] | | +body | typing.Union[[response_for_.application_octet_stream](#response_for_.application_octet_stream), ] | | headers | Unset | headers were not defined | -# response_for_200.application_octet_stream +# response_for_..application_octet_stream file to download diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 30e1cc9f866..5d653cdaea8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -31,7 +31,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_file( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_file: %s\n" % e) ``` @@ -66,16 +65,16 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index 664bfecb670..cc217f4e674 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_files( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_files: %s\n" % e) ``` @@ -78,16 +77,16 @@ items | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index 8e6dcee6920..e50f4a7ca25 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -43,7 +43,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.classname( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeClassnameTags123Api->classname: %s\n" % e) ``` @@ -63,16 +62,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index cea0ad3411c..ea9c4cb986e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -137,17 +137,17 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid input -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_405.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index bc2e52dc6c6..ea0805b2da9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -106,9 +106,9 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid pet value + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid pet value -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index 77341fb4f51..b307c102bcd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -105,7 +105,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.find_pets_by_status( query_params=query_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->find_pets_by_status: %s\n" % e) ``` @@ -144,17 +143,17 @@ items | str, | str, | | must be one of ["available", "pending", "sold", ] if Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid status value + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid status value -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -166,7 +165,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -178,7 +177,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index 71101d927cc..bd72bc7e614 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -105,7 +105,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.find_pets_by_tags( query_params=query_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->find_pets_by_tags: %s\n" % e) ``` @@ -144,17 +143,17 @@ items | str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid tag value + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid tag value -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -166,7 +165,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -178,7 +177,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index 67ab183ab96..8ac32a04153 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -43,7 +43,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_pet_by_id( path_params=path_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->get_pet_by_id: %s\n" % e) ``` @@ -76,37 +75,37 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Pet not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Pet not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index 00faa3b5ffb..3724ddf184a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -135,25 +135,25 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Pet not found -405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Validation exception + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Pet not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Validation exception -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_405.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index f5e969baa73..906fccceacc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -106,9 +106,9 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid input -#### response_for_405.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 8ae9312598f..7c19abc5f59 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -41,7 +41,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_file_with_required_file( path_params=path_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_file_with_required_file: %s\n" % e) @@ -59,7 +58,6 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_file_with_required_file: %s\n" % e) ``` @@ -109,16 +107,16 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 3f8db21a9f8..cb6c8f0e427 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -41,7 +41,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_image( path_params=path_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_image: %s\n" % e) @@ -59,7 +58,6 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_image: %s\n" % e) ``` @@ -109,16 +107,16 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index 1c55ffabb57..c68e432a3dd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Order not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Order not found -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index c309f27a0a7..00412e75658 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -38,7 +38,6 @@ with petstore_api.ApiClient(configuration) as api_client: try: # Returns pet inventories by status api_response = api_instance.get_inventory() - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->get_inventory: %s\n" % e) ``` @@ -50,16 +49,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index 27ac69181cf..e2fc158992d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -32,7 +32,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_order_by_id( path_params=path_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->get_order_by_id: %s\n" % e) ``` @@ -65,37 +64,37 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Order not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Order not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 28f898db814..f9670e5fbd2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -35,7 +35,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.place_order( body=body, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->place_order: %s\n" % e) ``` @@ -62,29 +61,29 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid Order + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid Order -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index ffa3b94ba36..a01c9f9901f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -69,9 +69,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index e8b267d9e04..68c6c3e0927 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -62,9 +62,9 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index c9f1e81ab58..c1d33186374 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -62,9 +62,9 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index b982fdf4061..da275fc4890 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index e3ea023af0f..6aabdc25ea1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -30,7 +30,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_user_by_name( path_params=path_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->get_user_by_name: %s\n" % e) ``` @@ -63,37 +62,37 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid username supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid username supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | headers | Unset | headers were not defined | -# response_for_200.application_xml +# response_for_..application_xml Type | Description | Notes ------------- | ------------- | ------------- [**User**](../../../components/schema/user.User.md) | | -# response_for_200.application_json +# response_for_..application_json Type | Description | Notes ------------- | ------------- | ------------- [**User**](../../../components/schema/user.User.md) | | -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index d696d9fb506..fb1642eaec4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -31,7 +31,6 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.login_user( query_params=query_params, ) - pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->login_user: %s\n" % e) ``` @@ -73,51 +72,51 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid username/password supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid username/password supplied -#### response_for_200.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | -headers | [response_for_200.Headers](#response_for_200.Headers) | | +body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +headers | [response_for_.Headers](#response_for_.Headers) | | -# response_for_200.application_xml +# response_for_..application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -# response_for_200.application_json +# response_for_..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -#### response_for_200.Headers +#### response_for_.Headers Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- -X-Rate-Limit | [response_for_200.parameter_x_rate_limit.application_json](#response_for_200.parameter_x_rate_limit.application_json) | | optional -X-Expires-After | [response_for_200.parameter_x_expires_after.schema](#response_for_200.parameter_x_expires_after.schema) | | optional +X-Rate-Limit | [response_for_.parameter_x_rate_limit.application_json](#response_for_.parameter_x_rate_limit.application_json) | | optional +X-Expires-After | [response_for_.parameter_x_expires_after.schema](#response_for_.parameter_x_expires_after.schema) | | optional -# response_for_200.parameter_x_rate_limit.application_json +# response_for_.parameter_x_rate_limit..application_json ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer -# response_for_200.parameter_x_expires_after.schema +# response_for_.parameter_x_expires_after..schema ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index aa52e8bd682..f68370d9a5b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -36,9 +36,9 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Success + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success -#### response_for_default.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index 999d9d49085..1df4c3c6543 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -88,17 +88,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid user supplied -404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found + | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid user supplied + | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found -#### response_for_400.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_404.ApiResponse +#### response_for_.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py new file mode 100644 index 00000000000..7ec95a8627a --- /dev/null +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py @@ -0,0 +1,28 @@ +import dataclasses +import urllib3 + +from petstore_api import api_client +from datetime import date, datetime # noqa: F401 +import decimal # noqa: F401 +import functools # noqa: F401 +import io # noqa: F401 +import re # noqa: F401 +import typing # noqa: F401 +import typing_extensions # noqa: F401 +import uuid # noqa: F401 + +import frozendict # noqa: F401 + +from petstore_api import schemas # noqa: F401 + + +@dataclasses.dataclass +class ApiResponse(api_client.ApiResponse): + response: urllib3.HTTPResponse + body: schemas.Unset = schemas.unset + headers: schemas.Unset = schemas.unset + + +response = api_client.OpenApiResponse( + response_cls=ApiResponse, +) 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 cc6dbea5bab..7da28ec9a5a 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_200 +from . import response_for_ @@ -56,7 +56,6 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -177,7 +174,6 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -190,7 +186,6 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -215,7 +210,6 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -251,7 +245,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -264,7 +257,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -289,7 +281,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d3fdd1e62a8..4de2457fb21 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +162,6 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -178,7 +174,6 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -203,7 +198,6 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -239,7 +233,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -252,7 +245,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -277,7 +269,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 2bc645918c1..22112c814e9 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -115,7 +115,6 @@ def _group_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -137,7 +136,6 @@ def _group_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -222,7 +220,6 @@ def group_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,7 +241,6 @@ def group_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -277,7 +273,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -299,7 +294,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8f65fda118e..f3235d522b8 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -99,7 +99,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -121,7 +120,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -206,7 +204,6 @@ class GroupParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -228,7 +225,6 @@ class GroupParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -261,7 +257,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -283,7 +278,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 56441b16dce..a0e8ab489f6 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -121,7 +121,6 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -136,7 +135,6 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -165,7 +163,6 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -270,7 +267,6 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -285,7 +281,6 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -314,7 +309,6 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -356,7 +350,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -371,7 +364,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -400,7 +392,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3d06d0c2b0e..fc6e14f785d 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -107,7 +107,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -122,7 +121,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -151,7 +149,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -256,7 +253,6 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -271,7 +267,6 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -300,7 +295,6 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -342,7 +336,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -357,7 +350,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -386,7 +378,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 c5ef9de3d60..a52b9fc1d2f 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_200 +from . import response_for_ @@ -56,7 +56,6 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -177,7 +174,6 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -190,7 +186,6 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -215,7 +210,6 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -251,7 +245,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -264,7 +257,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -289,7 +281,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 383bef1078f..7050240d013 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +162,6 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -178,7 +174,6 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -203,7 +198,6 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -239,7 +233,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -252,7 +245,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -277,7 +269,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7467205fb38..3b9adc71fde 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body @@ -59,7 +59,6 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -71,7 +70,6 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,7 +169,6 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,7 +180,6 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -207,7 +202,6 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -240,7 +234,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -252,7 +245,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 6113c740236..be71e369879 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body @@ -41,7 +41,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -53,7 +52,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -76,7 +74,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -154,7 +151,6 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -166,7 +162,6 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -189,7 +184,6 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -222,7 +216,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -234,7 +227,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -257,7 +249,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e4f22255ef1..cb27b00caa8 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -175,7 +172,6 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -188,7 +184,6 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -213,7 +208,6 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +243,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,7 +255,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -287,7 +279,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 83d6a24bbb9..824a6fa57a9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -201,7 +196,6 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -237,7 +231,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +243,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 47ba158d235..ffc22b29f05 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -52,7 +52,6 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -64,7 +63,6 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -87,7 +85,6 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -164,7 +161,6 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -199,7 +194,6 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -232,7 +226,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,7 +237,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -267,7 +259,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 fd10d5c8008..64a1bd4a1b0 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -152,7 +149,6 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -164,7 +160,6 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -187,7 +182,6 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -220,7 +214,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,7 +225,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -255,7 +247,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 10b98c144f0..f5a04c64d68 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -77,7 +77,6 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,7 +89,6 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -115,7 +113,6 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -206,7 +203,6 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -219,7 +215,6 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -244,7 +239,6 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -280,7 +274,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -293,7 +286,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -318,7 +310,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 36ed9f791c6..3f76056c653 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -65,7 +65,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -78,7 +77,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -103,7 +101,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -194,7 +191,6 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -207,7 +203,6 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -232,7 +227,6 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -268,7 +262,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -281,7 +274,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -306,7 +298,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 cb1e5e66977..9a214ce30ed 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -79,7 +79,6 @@ def _case_sensitive_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,7 +98,6 @@ def _case_sensitive_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -170,7 +168,6 @@ def case_sensitive_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -190,7 +187,6 @@ def case_sensitive_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -220,7 +216,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -240,7 +235,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 98d8c384fa5..7b054b7c48f 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -67,7 +67,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -87,7 +86,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -158,7 +156,6 @@ class CaseSensitiveParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -178,7 +175,6 @@ class CaseSensitiveParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -208,7 +204,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -228,7 +223,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ecb70e39134..c1c1ab65061 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_200 +from . import response_for_ _auth = [ @@ -60,7 +60,6 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -73,7 +72,6 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -98,7 +96,6 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -182,7 +179,6 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -195,7 +191,6 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -220,7 +215,6 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -256,7 +250,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -269,7 +262,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -294,7 +286,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 de02d26c41b..8c070c77996 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -166,7 +163,6 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -179,7 +175,6 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -204,7 +199,6 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -240,7 +234,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -253,7 +246,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -278,7 +270,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e30d3277f93..33be1732c8e 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_default +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -75,8 +75,6 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -96,8 +94,6 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -169,8 +165,6 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -190,8 +184,6 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -221,8 +213,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -242,8 +232,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ef32609d7c6..fad8a9adf55 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_default +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -62,8 +62,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -83,8 +81,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -156,8 +152,6 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -177,8 +171,6 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -208,8 +200,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, ]: ... @typing.overload @@ -229,8 +219,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 563a0b5cf18..1403f1bc908 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ @@ -53,7 +53,6 @@ def _fake_health_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -73,7 +72,6 @@ def _fake_health_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -139,7 +137,6 @@ def fake_health_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -159,7 +156,6 @@ def fake_health_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -189,7 +185,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -209,7 +204,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 9802bc4425a..d27a419f399 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -41,7 +41,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -61,7 +60,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -127,7 +125,6 @@ class FakeHealthGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -147,7 +144,6 @@ class FakeHealthGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -177,7 +173,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -197,7 +192,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 18da43de164..6309d9fdd89 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -52,7 +52,6 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -64,7 +63,6 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -87,7 +85,6 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +162,6 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -177,7 +173,6 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -233,7 +227,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,7 +238,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -268,7 +260,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 62740402de7..0c25febe7d5 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -153,7 +150,6 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -165,7 +161,6 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -188,7 +183,6 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -221,7 +215,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -233,7 +226,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -256,7 +248,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f6c6ef15936..80e65e7927d 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -85,7 +85,6 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,7 +98,6 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -113,7 +111,6 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -140,7 +137,6 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -235,7 +231,6 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +244,6 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -263,7 +257,6 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -290,7 +283,6 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -329,7 +321,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -343,7 +334,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -357,7 +347,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -384,7 +373,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ddfa94e1908..f7032af4605 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -73,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -87,7 +86,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -101,7 +99,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -128,7 +125,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -223,7 +219,6 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -237,7 +232,6 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -251,7 +245,6 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -278,7 +271,6 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -317,7 +309,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -331,7 +322,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -345,7 +335,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -372,7 +361,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 c7b127f4179..73cc04ab0d6 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -52,7 +52,6 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -64,7 +63,6 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -87,7 +85,6 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -198,7 +193,6 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,7 +225,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,7 +236,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -266,7 +258,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 5eac75739fa..5630e57af53 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -151,7 +148,6 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -163,7 +159,6 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -186,7 +181,6 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,7 +213,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -231,7 +224,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -254,7 +246,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 0e2d243f2bf..60b5247ba2d 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -52,7 +52,6 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -64,7 +63,6 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -87,7 +85,6 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -198,7 +193,6 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,7 +225,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,7 +236,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -266,7 +258,6 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 9bf8cbf8572..ff3296362ea 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -151,7 +148,6 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -163,7 +159,6 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -186,7 +181,6 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,7 +213,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -231,7 +224,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -254,7 +246,6 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 586a3c4c9e3..f87d8a985f0 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -175,7 +172,6 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -188,7 +184,6 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -213,7 +208,6 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +243,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,7 +255,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -287,7 +279,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 071563e4d77..d4b152c9429 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -201,7 +196,6 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -237,7 +231,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +243,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a701cca93fc..b4e58ae62fc 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -73,7 +73,6 @@ def _object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -93,7 +92,6 @@ def _object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +163,6 @@ def object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -185,7 +182,6 @@ def object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -215,7 +211,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -235,7 +230,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 11aac86023d..58b1c7749e6 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -61,7 +61,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -81,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -153,7 +151,6 @@ class ObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -173,7 +170,6 @@ class ObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -203,7 +199,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -223,7 +218,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py index 9da365076f3..81556106762 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -201,7 +201,6 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -218,7 +217,6 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -251,7 +249,6 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -372,7 +369,6 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -389,7 +385,6 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -422,7 +417,6 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -470,7 +464,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -487,7 +480,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -520,7 +512,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi index 17a0f4b9fa0..0e15fff8276 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 from . import parameter_1 @@ -189,7 +189,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -206,7 +205,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -239,7 +237,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -360,7 +357,6 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -377,7 +373,6 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -410,7 +405,6 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -458,7 +452,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -475,7 +468,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -508,7 +500,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 5982d6f672f..75fb23d8d81 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -85,7 +85,6 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,7 +98,6 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -126,7 +124,6 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -222,7 +219,6 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -236,7 +232,6 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -263,7 +258,6 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -302,7 +296,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -316,7 +309,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -343,7 +335,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 299d2cfb42b..4451036f4e9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -69,7 +69,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -83,7 +82,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -110,7 +108,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -206,7 +203,6 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -220,7 +216,6 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -247,7 +242,6 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -286,7 +280,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -300,7 +293,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -327,7 +319,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d864746404a..37161474855 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -78,7 +78,6 @@ def _query_param_with_json_content_type_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -100,7 +99,6 @@ def _query_param_with_json_content_type_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -180,7 +178,6 @@ def query_param_with_json_content_type( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -202,7 +199,6 @@ def query_param_with_json_content_type( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -235,7 +231,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -257,7 +252,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 55c3f5f75f4..331d0b554da 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -66,7 +66,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -88,7 +87,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -168,7 +166,6 @@ class QueryParamWithJsonContentType(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -190,7 +187,6 @@ class QueryParamWithJsonContentType(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -223,7 +219,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,7 +240,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a8d0a686ee7..1e1f8c0c546 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -73,7 +73,6 @@ def _ref_object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -93,7 +92,6 @@ def _ref_object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +163,6 @@ def ref_object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -185,7 +182,6 @@ def ref_object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -215,7 +211,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -235,7 +230,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 1257270e5e6..a66ce00120e 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 @@ -61,7 +61,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -81,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -153,7 +151,6 @@ class RefObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -173,7 +170,6 @@ class RefObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -203,7 +199,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -223,7 +218,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 93661a015b3..b334e48cb49 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -175,7 +172,6 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -188,7 +184,6 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -213,7 +208,6 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +243,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,7 +255,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -287,7 +279,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 0a4faa8ea47..8ef5e5c4cd5 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -201,7 +196,6 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -237,7 +231,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +243,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f2f68bdf756..dff3b4f32bb 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 cd3d313a4f9..32e439f27e9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 85c125cde70..ef0b3e28453 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 72f00177794..28d204945a9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 eb0b7c2bce2..59fc43ebae0 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 05d94456169..6285b391c27 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 90c6d903ebd..78c6a8630b6 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 45ed814109b..31b805c6d28 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 43f29ab8469..b3c3067e77e 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -176,7 +173,6 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -189,7 +185,6 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -214,7 +209,6 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -250,7 +244,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -263,7 +256,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -288,7 +280,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 6d6cff8f993..8abedadcd1b 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -164,7 +161,6 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -177,7 +173,6 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -202,7 +197,6 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -238,7 +232,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -251,7 +244,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -276,7 +268,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a0efc483a8a..436323ea01d 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7b5eca8a8c9..4abd893cd96 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 92258f44727..83af9ae93a6 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 5590a158b27..74d8a47c9fb 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a9e8bbb0b2f..99c84622531 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +171,6 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +183,6 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -212,7 +207,6 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -248,7 +242,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,7 +254,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -286,7 +278,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 650364d9fab..e92d4531159 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,7 +159,6 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +171,6 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -200,7 +195,6 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,7 +230,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +242,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -274,7 +266,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 cb6e7c327f4..b90c889bda9 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ @@ -54,7 +54,6 @@ def _response_without_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -74,7 +73,6 @@ def _response_without_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -140,7 +138,6 @@ def response_without_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -160,7 +157,6 @@ def response_without_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -190,7 +186,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -210,7 +205,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b4fdaad57f0..a7b8c730514 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -42,7 +42,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -62,7 +61,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -128,7 +126,6 @@ class ResponseWithoutSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -148,7 +145,6 @@ class ResponseWithoutSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -178,7 +174,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -198,7 +193,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 fc7242de04a..70fd17d7a1f 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -88,7 +88,6 @@ def _query_parameter_collection_format_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -108,7 +107,6 @@ def _query_parameter_collection_format_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -179,7 +177,6 @@ def query_parameter_collection_format( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -199,7 +196,6 @@ def query_parameter_collection_format( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -229,7 +225,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +244,6 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 05cffad0fb7..46d9aa4adf4 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -76,7 +76,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -96,7 +95,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -167,7 +165,6 @@ class QueryParameterCollectionFormat(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,7 +184,6 @@ class QueryParameterCollectionFormat(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -217,7 +213,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -237,7 +232,6 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 399b6e95e02..be577aa5deb 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -177,7 +174,6 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -190,7 +186,6 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -215,7 +210,6 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -251,7 +245,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -264,7 +257,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -289,7 +281,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 22337624c06..a3a0550f989 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,7 +162,6 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -178,7 +174,6 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -203,7 +198,6 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -239,7 +233,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -252,7 +245,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -277,7 +269,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3b3387a1ff1..981571e0f10 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -175,7 +172,6 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -188,7 +184,6 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -213,7 +208,6 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +243,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,7 +255,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -287,7 +279,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 dbb3ac21494..74837b82d5d 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -201,7 +196,6 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -237,7 +231,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +243,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a03936af5f8..70e20d75b00 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body @@ -56,7 +56,6 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -69,7 +68,6 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -94,7 +92,6 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -175,7 +172,6 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -188,7 +184,6 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -213,7 +208,6 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +243,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,7 +255,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -287,7 +279,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8d9a70afa70..dbeb6980c13 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -44,7 +44,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -57,7 +56,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -82,7 +80,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,7 +160,6 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -176,7 +172,6 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -201,7 +196,6 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -237,7 +231,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +243,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -275,7 +267,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4d7c98f0c49..5d1cfad8646 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 @@ -26,11 +26,18 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_default +from . import response_for_ default_response = response_for_default.response +__StatusCodeToResponse = typing_extensions.TypedDict( + '__StatusCodeToResponse', + { + } +) +_status_code_to_response = __StatusCodeToResponse({ +}) _all_accept_content_types = ( 'application/json', ) @@ -45,7 +52,6 @@ def _foo_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -65,7 +71,6 @@ def _foo_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -100,7 +105,13 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -123,7 +134,6 @@ def foo_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -143,7 +153,6 @@ def foo_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -173,7 +182,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -193,7 +201,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e0d5b00c6fe..c06ce454fe9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_default +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -41,7 +41,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -61,7 +60,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -96,7 +94,13 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -119,7 +123,6 @@ class FooGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -139,7 +142,6 @@ class FooGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -169,7 +171,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -189,7 +190,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 451832591e2..889117d4f62 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 @@ -27,8 +27,8 @@ from petstore_api.components.request_bodies import pet_request_body as request_body from .. import path -from . import response_for_200 -from . import response_for_405 +from . import response_for_ +from . import response_for_ _auth = [ @@ -72,7 +72,6 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -85,7 +84,6 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -98,7 +96,6 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -123,7 +120,6 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -208,7 +204,6 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -221,7 +216,6 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -234,7 +228,6 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -259,7 +252,6 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -295,7 +287,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -308,7 +299,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -321,7 +311,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -346,7 +335,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a4b8f8edaf2..e1e29751a94 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 @@ -26,8 +26,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body -from . import response_for_200 -from . import response_for_405 +from . import response_for_ +from . import response_for_ @@ -42,7 +42,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -55,7 +54,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,7 +66,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -93,7 +90,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -178,7 +174,6 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -191,7 +186,6 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -204,7 +198,6 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -229,7 +222,6 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -265,7 +257,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -278,7 +269,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -291,7 +281,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -316,7 +305,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 68cefbb7c99..dc32d8237d7 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 @@ -27,9 +27,9 @@ from petstore_api.components.request_bodies import pet_request_body as request_body from .. import path -from . import response_for_400 -from . import response_for_404 -from . import response_for_405 +from . import response_for_ +from . import response_for_ +from . import response_for_ _auth = [ 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 614e1db0e82..aad93e5c615 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 @@ -26,9 +26,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body -from . import response_for_400 -from . import response_for_404 -from . import response_for_405 +from . import response_for_ +from . import response_for_ +from . import response_for_ 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 948ada7c123..0931a88072b 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -87,7 +87,6 @@ def _find_pets_by_status_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -109,7 +108,6 @@ def _find_pets_by_status_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -191,7 +189,6 @@ def find_pets_by_status( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -213,7 +210,6 @@ def find_pets_by_status( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -246,7 +242,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -268,7 +263,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b6af738bcec..4c79371d4bd 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -68,7 +68,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,7 +89,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,7 +170,6 @@ class FindPetsByStatus(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -194,7 +191,6 @@ class FindPetsByStatus(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -227,7 +223,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +244,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e55350c96cd..60150362f3e 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -87,7 +87,6 @@ def _find_pets_by_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -109,7 +108,6 @@ def _find_pets_by_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -191,7 +189,6 @@ def find_pets_by_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -213,7 +210,6 @@ def find_pets_by_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -246,7 +242,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -268,7 +263,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 434d06a608a..adc29beb4f6 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -68,7 +68,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,7 +89,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,7 +170,6 @@ class FindPetsByTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -194,7 +191,6 @@ class FindPetsByTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -227,7 +223,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -249,7 +244,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b5390fdb492..799510cd5e9 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_400 +from . import response_for_ from . import parameter_0 from . import parameter_1 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 057d7d27cf1..9ce72604830 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_400 +from . import response_for_ from . import parameter_0 from . import parameter_1 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 708cf6c6d2b..67629a44ece 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -89,7 +89,6 @@ def _get_pet_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -111,7 +110,6 @@ def _get_pet_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -194,7 +192,6 @@ def get_pet_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -216,7 +213,6 @@ def get_pet_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -249,7 +245,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -271,7 +266,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7b1b670af51..756ff5ec4f6 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -69,7 +69,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -91,7 +90,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +172,6 @@ class GetPetById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -196,7 +193,6 @@ class GetPetById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -229,7 +225,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -251,7 +246,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 580087cc5c7..16306e3c26b 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_405 +from . import response_for_ from . import request_body from . import parameter_0 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 1ebe5cb3965..9796e7012ca 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_405 +from . import response_for_ from . import request_body from . import parameter_0 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 69950b6481f..baa8e6da7db 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -85,7 +85,6 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,7 +98,6 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -126,7 +124,6 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -222,7 +219,6 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -236,7 +232,6 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -263,7 +258,6 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -302,7 +296,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -316,7 +309,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -343,7 +335,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d676b27e657..24a2e79b5a4 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ from . import request_body from . import parameter_0 @@ -69,7 +69,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -83,7 +82,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -110,7 +108,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -206,7 +203,6 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -220,7 +216,6 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -247,7 +242,6 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -286,7 +280,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -300,7 +293,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -327,7 +319,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a0a32448a44..a9b0fd1441a 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 +from . import response_for_ _auth = [ @@ -57,7 +57,6 @@ def _get_inventory_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -77,7 +76,6 @@ def _get_inventory_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -144,7 +142,6 @@ def get_inventory( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -164,7 +161,6 @@ def get_inventory( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -194,7 +190,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -214,7 +209,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a5844e0e25d..b7eedef5cb3 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 +from . import response_for_ _all_accept_content_types = ( 'application/json', @@ -41,7 +41,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -61,7 +60,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -128,7 +126,6 @@ class GetInventory(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -148,7 +145,6 @@ class GetInventory(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -178,7 +174,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -198,7 +193,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 735264479a5..abb3ab14ad6 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import request_body @@ -60,7 +60,6 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -73,7 +72,6 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -98,7 +96,6 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -182,7 +179,6 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -195,7 +191,6 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -220,7 +215,6 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -256,7 +250,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -269,7 +262,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -294,7 +286,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 419ac86c3b7..f88632cd3bd 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import request_body _all_accept_content_types = ( @@ -46,7 +46,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -59,7 +58,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -84,7 +82,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -168,7 +165,6 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -181,7 +177,6 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -206,7 +201,6 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,7 +236,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,7 +248,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @@ -280,7 +272,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 69784f79b2e..0a9bee0e0c6 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import parameter_0 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 967e001b5e0..77f40a8a11b 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import parameter_0 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 9726351b70a..1417d4798f6 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -85,7 +85,6 @@ def _get_order_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -107,7 +106,6 @@ def _get_order_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -189,7 +187,6 @@ def get_order_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -211,7 +208,6 @@ def get_order_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -244,7 +240,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -266,7 +261,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3de21cbaf35..31680d78ec4 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -69,7 +69,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -91,7 +90,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -173,7 +171,6 @@ class GetOrderById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -195,7 +192,6 @@ class GetOrderById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -228,7 +224,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +245,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7bfbc4810f1..2630f2b4ba6 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 @@ -26,12 +26,19 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_default +from . import response_for_ from . import request_body default_response = response_for_default.response +__StatusCodeToResponse = typing_extensions.TypedDict( + '__StatusCodeToResponse', + { + } +) +_status_code_to_response = __StatusCodeToResponse({ +}) class BaseApi(api_client.Api): @@ -44,7 +51,6 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -56,7 +62,6 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -79,7 +84,6 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -126,7 +130,13 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -150,7 +160,6 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -162,7 +171,6 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -185,7 +193,6 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -218,7 +225,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -230,7 +236,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -253,7 +258,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 64f750c839e..b0d447dc118 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_default +from . import response_for_ from . import request_body @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -122,7 +119,13 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -146,7 +149,6 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -158,7 +160,6 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -181,7 +182,6 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,7 +214,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -226,7 +225,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -249,7 +247,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a0d08aedfd4..b38c4917e6a 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 @@ -27,11 +27,18 @@ from petstore_api.components.request_bodies import user_array_request_body as request_body from .. import path -from . import response_for_default +from . import response_for_ default_response = response_for_default.response +__StatusCodeToResponse = typing_extensions.TypedDict( + '__StatusCodeToResponse', + { + } +) +_status_code_to_response = __StatusCodeToResponse({ +}) class BaseApi(api_client.Api): @@ -44,7 +51,6 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -56,7 +62,6 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -79,7 +84,6 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -126,7 +130,13 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -150,7 +160,6 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -162,7 +171,6 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -185,7 +193,6 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -218,7 +225,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -230,7 +236,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -253,7 +258,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 58b9d6effec..1f1b5813286 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import user_array_request_body as request_body -from . import response_for_default +from . import response_for_ @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -122,7 +119,13 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -146,7 +149,6 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -158,7 +160,6 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -181,7 +182,6 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,7 +214,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -226,7 +225,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -249,7 +247,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 009d8a090ef..1c296f9be03 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 @@ -27,11 +27,18 @@ from petstore_api.components.request_bodies import user_array_request_body as request_body from .. import path -from . import response_for_default +from . import response_for_ default_response = response_for_default.response +__StatusCodeToResponse = typing_extensions.TypedDict( + '__StatusCodeToResponse', + { + } +) +_status_code_to_response = __StatusCodeToResponse({ +}) class BaseApi(api_client.Api): @@ -44,7 +51,6 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -56,7 +62,6 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -79,7 +84,6 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -126,7 +130,13 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -150,7 +160,6 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -162,7 +171,6 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -185,7 +193,6 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -218,7 +225,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -230,7 +236,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -253,7 +258,6 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 cb9133eecb2..d4a65b6b24a 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import user_array_request_body as request_body -from . import response_for_default +from . import response_for_ @@ -40,7 +40,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -52,7 +51,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -75,7 +73,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -122,7 +119,13 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -146,7 +149,6 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -158,7 +160,6 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -181,7 +182,6 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,7 +214,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -226,7 +225,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @@ -249,7 +247,6 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b1e1d1fcaf1..aa26c6fde57 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 from . import parameter_1 @@ -85,7 +85,6 @@ def _login_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -107,7 +106,6 @@ def _login_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -188,7 +186,6 @@ def login_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -210,7 +207,6 @@ def login_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,7 +239,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -265,7 +260,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8829fa03bb1..3d407a6037c 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 +from . import response_for_ +from . import response_for_ from . import parameter_0 from . import parameter_1 @@ -71,7 +71,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -93,7 +92,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,7 +172,6 @@ class LoginUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -196,7 +193,6 @@ class LoginUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -229,7 +225,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -251,7 +246,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 461b995438d..b9b76a1dd22 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 @@ -25,11 +25,18 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_default +from . import response_for_ default_response = response_for_default.response +__StatusCodeToResponse = typing_extensions.TypedDict( + '__StatusCodeToResponse', + { + } +) +_status_code_to_response = __StatusCodeToResponse({ +}) class BaseApi(api_client.Api): @@ -40,7 +47,6 @@ def _logout_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -58,7 +64,6 @@ def _logout_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -87,7 +92,13 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -109,7 +120,6 @@ def logout_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -127,7 +137,6 @@ def logout_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -154,7 +163,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -172,7 +180,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 44ff5e780b4..bdd1e29c7d4 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_default +from . import response_for_ @@ -36,7 +36,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -54,7 +53,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -83,7 +81,13 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - api_response = default_response.deserialize(response, self.api_client.configuration) + status = str(response.status) + if status in _status_code_to_response: + status: typing_extensions.Literal[ + ] + api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) + else: + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( @@ -105,7 +109,6 @@ class LogoutUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -123,7 +126,6 @@ class LogoutUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -150,7 +152,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, ]: ... @typing.overload @@ -168,7 +169,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4c1621b57a1..914522e6082 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -76,7 +76,6 @@ def _delete_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -96,7 +95,6 @@ def _delete_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -169,7 +167,6 @@ def delete_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -189,7 +186,6 @@ def delete_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,7 +215,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -239,7 +234,6 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 10cd329e030..8a2b098c1cb 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -62,7 +62,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -82,7 +81,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -155,7 +153,6 @@ class DeleteUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,7 +172,6 @@ class DeleteUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -205,7 +201,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -225,7 +220,6 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f70a8fea25e..bafa334daf7 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -85,7 +85,6 @@ def _get_user_by_name_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -107,7 +106,6 @@ def _get_user_by_name_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -189,7 +187,6 @@ def get_user_by_name( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -211,7 +208,6 @@ def get_user_by_name( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -244,7 +240,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -266,7 +261,6 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 800d174be9e..9bf770749ea 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_200 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ +from . import response_for_ from . import parameter_0 @@ -69,7 +69,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -91,7 +90,6 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -173,7 +171,6 @@ class GetUserByName(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -195,7 +192,6 @@ class GetUserByName(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -228,7 +224,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_200.ApiResponse, ]: ... @typing.overload @@ -250,7 +245,6 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 659700c3c7e..c9ebff2ec1b 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body from . import parameter_0 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 5b9e01539ca..3d3a797eec3 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_400 -from . import response_for_404 +from . import response_for_ +from . import response_for_ from . import request_body from . import parameter_0 diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py index 4e8b1c33fc6..18ddd668cab 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = patch.response_for_200.application_json + response_status = + response_body_schema = patch.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py index c22a9853256..cc320fd2061 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py index f5ec3b73469..26a48a2df6a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py index 07c50c0e2a8..cfd1515925d 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = patch.response_for_200.application_json + response_status = + response_body_schema = patch.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py index 714554981c6..1443ec9c164 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py index be48f66d5ea..7720c25ecfb 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_json + response_status = + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py index 792ba93a1e8..3d38e53d9ea 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py index 24385ae529e..5e60b858373 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py index 1f1cb364763..3cfdf9b9ff0 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py index aa816791025..c43354f7fd2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = patch.response_for_200.application_json + response_status = + response_body_schema = patch.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py index a002c547aa5..a2425ffff32 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py index 1865ee31607..ce4f2b224f4 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_json + response_status = + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py index a1b5801b829..0e6938c9cba 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py index 46d0211c1c9..80338803234 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json - response_body_schema = post.response_for_200.multipart_form_data + response_body_schema = post.response_for_.multipart_form_data diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py index 2c10640ca3f..8c7af5af3a6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py index add02d961a0..c19d32ff37a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py index d3feb8d42c0..325427dc096 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json_charsetutf_8 + response_status = + response_body_schema = post.response_for_.application_json_charsetutf_8 diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py index fc11f501a40..5f91d128c5e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py index 73ff5c2859c..9e9edcfd16a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py index fb4b561c379..63cc363c029 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py index ec5e15b0f2c..0fe8cf1c81e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_json + response_status = + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py index 61edf55e3d7..eee8472954f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py index 5f3372adbaa..adccaf13dc2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py index 82025e71da2..496558597f1 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py index bd893ffa09b..71fb8d184ce 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py index d6f747a875a..c2811bf0c01 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py index bf80535a5a3..4d38f5095df 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py index bc3c0f7c482..2c86ab4ffcf 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py index c9c5cf0ee79..59f2828bcbf 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py index dfcf189a92e..3cf470ccf35 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py index 4327652184f..81c2e9adbc9 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py index bcab7c96465..1faa6f46ab8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py index e358588324b..c2fff5d6870 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py index 66a05db6494..536edb44724 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_octet_stream + response_status = + response_body_schema = post.response_for_.application_octet_stream diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py index 16cdbb24541..9077f36ddac 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py index 4320914a246..75f5b101503 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py index 03a8a8f6ffd..352a833b1d0 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = 0 - response_body_schema = get.response_for_default.application_json + response_status = + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py index 5016a08a9c3..847424172c5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py index 903536c66d0..a8ef13f34b9 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 400 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py index b65853a8f41..acfb8a3e11b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py index 6d73f0f0e8e..a21a243fe21 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py index 04b03559110..3882eeb8647 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 400 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py index b4025901400..da967b6cc93 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py index 6c6c9e60ad3..2d3e496bcad 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 405 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py index 69e9fc1d8a5..5a4ec835ae5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_json + response_status = + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py index ac1d420df14..10a910e613e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_json + response_status = + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py index 8208e5e1984..6ff1d10db32 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = post.response_for_200.application_xml + response_status = + response_body_schema = post.response_for_.application_xml - response_body_schema = post.response_for_200.application_json + response_body_schema = post.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py index 3b229d2b1b5..4356ede409b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 400 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py index 7fca47ab679..b698003ff7f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py index 0b494f2ba22..ebdac8acfbb 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 0 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py index a6ed9b4d735..b5115c95c12 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 0 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py index 173e669239a..45cd15d4e83 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 0 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py index a37041acbae..2c6f1765187 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py index 9329c79fb23..3d70aad5faa 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 0 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py index 4ea2cc0f52b..ad5314849cc 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 200 + response_status = response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py index 1d247f5a4a3..b36e83a8aab 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = 200 - response_body_schema = get.response_for_200.application_xml + response_status = + response_body_schema = get.response_for_.application_xml - response_body_schema = get.response_for_200.application_json + response_body_schema = get.response_for_.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py index 6e94769a585..ca306c26e66 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = 400 + response_status = response_body = '' From 152438cc0e3c61f1513f3af7b9ee787cb6e00a68 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:06:53 -0800 Subject: [PATCH 06/44] Regen sample, fixes endpoint method type hints --- .../paths/another_fake_dummy/patch/__init__.py | 11 ++++++++++- .../paths/another_fake_dummy/patch/__init__.pyi | 11 ++++++++++- .../petstore_api/paths/fake/delete/__init__.py | 8 +++++++- .../petstore_api/paths/fake/delete/__init__.pyi | 8 +++++++- .../petstore_api/paths/fake/get/__init__.py | 13 +++++++++++-- .../petstore_api/paths/fake/get/__init__.pyi | 13 +++++++++++-- .../petstore_api/paths/fake/patch/__init__.py | 11 ++++++++++- .../petstore_api/paths/fake/patch/__init__.pyi | 11 ++++++++++- .../petstore_api/paths/fake/post/__init__.py | 13 +++++++++++-- .../petstore_api/paths/fake/post/__init__.pyi | 13 +++++++++++-- .../get/__init__.py | 11 ++++++++++- .../get/__init__.pyi | 11 ++++++++++- .../fake_body_with_file_schema/put/__init__.py | 11 ++++++++++- .../fake_body_with_file_schema/put/__init__.pyi | 11 ++++++++++- .../fake_body_with_query_params/put/__init__.py | 11 ++++++++++- .../fake_body_with_query_params/put/__init__.pyi | 11 ++++++++++- .../fake_case_sensitive_params/put/__init__.py | 8 +++++++- .../fake_case_sensitive_params/put/__init__.pyi | 8 +++++++- .../paths/fake_classname_test/patch/__init__.py | 11 ++++++++++- .../paths/fake_classname_test/patch/__init__.pyi | 11 ++++++++++- .../fake_delete_coffee_id/delete/__init__.py | 16 ++++++++++++++-- .../fake_delete_coffee_id/delete/__init__.pyi | 16 ++++++++++++++-- .../paths/fake_health/get/__init__.py | 8 +++++++- .../paths/fake_health/get/__init__.pyi | 8 +++++++- .../post/__init__.py | 11 ++++++++++- .../post/__init__.pyi | 11 ++++++++++- .../fake_inline_composition/post/__init__.py | 14 +++++++++++++- .../fake_inline_composition/post/__init__.pyi | 14 +++++++++++++- .../paths/fake_json_form_data/get/__init__.py | 11 ++++++++++- .../paths/fake_json_form_data/get/__init__.pyi | 11 ++++++++++- .../paths/fake_json_patch/patch/__init__.py | 11 ++++++++++- .../paths/fake_json_patch/patch/__init__.pyi | 11 ++++++++++- .../fake_json_with_charset/post/__init__.py | 11 ++++++++++- .../fake_json_with_charset/post/__init__.pyi | 11 ++++++++++- .../paths/fake_obj_in_query/get/__init__.py | 8 +++++++- .../paths/fake_obj_in_query/get/__init__.pyi | 8 +++++++- .../post/__init__.py | 11 ++++++++++- .../post/__init__.pyi | 11 ++++++++++- .../post/__init__.py | 11 ++++++++++- .../post/__init__.pyi | 11 ++++++++++- .../get/__init__.py | 8 +++++++- .../get/__init__.pyi | 8 +++++++- .../paths/fake_ref_obj_in_query/get/__init__.py | 8 +++++++- .../paths/fake_ref_obj_in_query/get/__init__.pyi | 8 +++++++- .../fake_refs_array_of_enums/post/__init__.py | 11 ++++++++++- .../fake_refs_array_of_enums/post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_arraymodel/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_arraymodel/post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_boolean/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_boolean/post/__init__.pyi | 11 ++++++++++- .../post/__init__.py | 11 ++++++++++- .../post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_enum/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_enum/post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_mammal/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_mammal/post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_number/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_number/post/__init__.pyi | 11 ++++++++++- .../post/__init__.py | 11 ++++++++++- .../post/__init__.pyi | 11 ++++++++++- .../paths/fake_refs_string/post/__init__.py | 11 ++++++++++- .../paths/fake_refs_string/post/__init__.pyi | 11 ++++++++++- .../fake_response_without_schema/get/__init__.py | 8 +++++++- .../get/__init__.pyi | 8 +++++++- .../fake_test_query_paramters/put/__init__.py | 8 +++++++- .../fake_test_query_paramters/put/__init__.pyi | 8 +++++++- .../fake_upload_download_file/post/__init__.py | 11 ++++++++++- .../fake_upload_download_file/post/__init__.pyi | 11 ++++++++++- .../paths/fake_upload_file/post/__init__.py | 11 ++++++++++- .../paths/fake_upload_file/post/__init__.pyi | 11 ++++++++++- .../paths/fake_upload_files/post/__init__.py | 11 ++++++++++- .../paths/fake_upload_files/post/__init__.pyi | 11 ++++++++++- .../petstore_api/paths/foo/get/__init__.py | 8 +++++++- .../petstore_api/paths/foo/get/__init__.pyi | 8 +++++++- .../petstore_api/paths/pet/post/__init__.py | 16 ++++++++++++++-- .../petstore_api/paths/pet/post/__init__.pyi | 16 ++++++++++++++-- .../petstore_api/paths/pet/put/__init__.py | 6 +++--- .../petstore_api/paths/pet/put/__init__.pyi | 6 +++--- .../paths/pet_find_by_status/get/__init__.py | 10 ++++++++-- .../paths/pet_find_by_status/get/__init__.pyi | 10 ++++++++-- .../paths/pet_find_by_tags/get/__init__.py | 10 ++++++++-- .../paths/pet_find_by_tags/get/__init__.pyi | 10 ++++++++-- .../paths/pet_pet_id/delete/__init__.py | 2 +- .../paths/pet_pet_id/delete/__init__.pyi | 2 +- .../paths/pet_pet_id/get/__init__.py | 12 +++++++++--- .../paths/pet_pet_id/get/__init__.pyi | 12 +++++++++--- .../paths/pet_pet_id/post/__init__.py | 2 +- .../paths/pet_pet_id/post/__init__.pyi | 2 +- .../pet_pet_id_upload_image/post/__init__.py | 11 ++++++++++- .../pet_pet_id_upload_image/post/__init__.pyi | 11 ++++++++++- .../paths/store_inventory/get/__init__.py | 8 +++++++- .../paths/store_inventory/get/__init__.pyi | 8 +++++++- .../paths/store_order/post/__init__.py | 13 +++++++++++-- .../paths/store_order/post/__init__.pyi | 13 +++++++++++-- .../store_order_order_id/delete/__init__.py | 4 ++-- .../store_order_order_id/delete/__init__.pyi | 4 ++-- .../paths/store_order_order_id/get/__init__.py | 12 +++++++++--- .../paths/store_order_order_id/get/__init__.pyi | 12 +++++++++--- .../petstore_api/paths/user/post/__init__.py | 11 ++++++++++- .../petstore_api/paths/user/post/__init__.pyi | 11 ++++++++++- .../user_create_with_array/post/__init__.py | 11 ++++++++++- .../user_create_with_array/post/__init__.pyi | 11 ++++++++++- .../paths/user_create_with_list/post/__init__.py | 11 ++++++++++- .../user_create_with_list/post/__init__.pyi | 11 ++++++++++- .../paths/user_login/get/__init__.py | 10 ++++++++-- .../paths/user_login/get/__init__.pyi | 10 ++++++++-- .../paths/user_logout/get/__init__.py | 8 +++++++- .../paths/user_logout/get/__init__.pyi | 8 +++++++- .../paths/user_username/delete/__init__.py | 10 ++++++++-- .../paths/user_username/delete/__init__.pyi | 10 ++++++++-- .../paths/user_username/get/__init__.py | 12 +++++++++--- .../paths/user_username/get/__init__.pyi | 12 +++++++++--- .../paths/user_username/put/__init__.py | 4 ++-- .../paths/user_username/put/__init__.pyi | 4 ++-- 114 files changed, 998 insertions(+), 152 deletions(-) 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 7da28ec9a5a..cc6dbea5bab 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_ +from . import response_for_200 @@ -56,6 +56,7 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _call_123_test_special_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +177,7 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -186,6 +190,7 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -210,6 +215,7 @@ def call_123_test_special_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -245,6 +251,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -257,6 +264,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -281,6 +289,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4de2457fb21..d3fdd1e62a8 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,6 +165,7 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -174,6 +178,7 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -198,6 +203,7 @@ class Call123TestSpecialTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -233,6 +239,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +252,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -269,6 +277,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 22112c814e9..2bc645918c1 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -115,6 +115,7 @@ def _group_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -136,6 +137,7 @@ def _group_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -220,6 +222,7 @@ def group_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -241,6 +244,7 @@ def group_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -273,6 +277,7 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -294,6 +299,7 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f3235d522b8..8f65fda118e 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -99,6 +99,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -120,6 +121,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -204,6 +206,7 @@ class GroupParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -225,6 +228,7 @@ class GroupParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -257,6 +261,7 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -278,6 +283,7 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a0e8ab489f6..56441b16dce 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import request_body from . import parameter_0 from . import parameter_1 @@ -121,6 +121,7 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -135,6 +136,7 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -163,6 +165,7 @@ def _enum_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -267,6 +270,7 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -281,6 +285,7 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -309,6 +314,7 @@ def enum_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -350,6 +356,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -364,6 +371,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -392,6 +400,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 fc6e14f785d..3d06d0c2b0e 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import request_body from . import parameter_0 from . import parameter_1 @@ -107,6 +107,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -121,6 +122,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -149,6 +151,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -253,6 +256,7 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -267,6 +271,7 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -295,6 +300,7 @@ class EnumParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -336,6 +342,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -350,6 +357,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -378,6 +386,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a52b9fc1d2f..c5ef9de3d60 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_ +from . import response_for_200 @@ -56,6 +56,7 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _client_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +177,7 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -186,6 +190,7 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -210,6 +215,7 @@ def client_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -245,6 +251,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -257,6 +264,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -281,6 +289,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7050240d013..383bef1078f 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,6 +165,7 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -174,6 +178,7 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -198,6 +203,7 @@ class ClientModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -233,6 +239,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +252,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -269,6 +277,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3b9adc71fde..7467205fb38 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import request_body @@ -59,6 +59,7 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -70,6 +71,7 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _endpoint_parameters_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -169,6 +172,7 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -180,6 +184,7 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -202,6 +207,7 @@ def endpoint_parameters( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -234,6 +240,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +252,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 be71e369879..6113c740236 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import request_body @@ -41,6 +41,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -52,6 +53,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -74,6 +76,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -151,6 +154,7 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -162,6 +166,7 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -184,6 +189,7 @@ class EndpointParameters(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -216,6 +222,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -227,6 +234,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -249,6 +257,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 cb27b00caa8..e4f22255ef1 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _additional_properties_with_array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +175,7 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +188,7 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -208,6 +213,7 @@ def additional_properties_with_array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,6 +249,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,6 +262,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -279,6 +287,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 824a6fa57a9..83d6a24bbb9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -196,6 +201,7 @@ class AdditionalPropertiesWithArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +237,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,6 +250,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ffc22b29f05..47ba158d235 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -52,6 +52,7 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -63,6 +64,7 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -85,6 +87,7 @@ def _body_with_file_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -161,6 +164,7 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -194,6 +199,7 @@ def body_with_file_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -226,6 +232,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -237,6 +244,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -259,6 +267,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 64a1bd4a1b0..fd10d5c8008 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -149,6 +152,7 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -160,6 +164,7 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -182,6 +187,7 @@ class BodyWithFileSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,6 +220,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -225,6 +232,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -247,6 +255,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f5a04c64d68..10b98c144f0 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -77,6 +77,7 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -89,6 +90,7 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -113,6 +115,7 @@ def _body_with_query_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -203,6 +206,7 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -215,6 +219,7 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -239,6 +244,7 @@ def body_with_query_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -274,6 +280,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -286,6 +293,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -310,6 +318,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3f76056c653..36ed9f791c6 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -65,6 +65,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -77,6 +78,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -101,6 +103,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -191,6 +194,7 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -203,6 +207,7 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -227,6 +232,7 @@ class BodyWithQueryParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -262,6 +268,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -274,6 +281,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -298,6 +306,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 9a214ce30ed..cb1e5e66977 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -79,6 +79,7 @@ def _case_sensitive_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -98,6 +99,7 @@ def _case_sensitive_params_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -168,6 +170,7 @@ def case_sensitive_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,6 +190,7 @@ def case_sensitive_params( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -216,6 +220,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -235,6 +240,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 7b054b7c48f..98d8c384fa5 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -67,6 +67,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -86,6 +87,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -156,6 +158,7 @@ class CaseSensitiveParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,6 +178,7 @@ class CaseSensitiveParams(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -204,6 +208,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -223,6 +228,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 c1c1ab65061..ecb70e39134 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import client_request_body as request_body from .. import path -from . import response_for_ +from . import response_for_200 _auth = [ @@ -60,6 +60,7 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -72,6 +73,7 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -96,6 +98,7 @@ def _classname_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -179,6 +182,7 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -191,6 +195,7 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -215,6 +220,7 @@ def classname( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -250,6 +256,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,6 +269,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -286,6 +294,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8c070c77996..de02d26c41b 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import client_request_body as request_body -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,6 +166,7 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -175,6 +179,7 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -199,6 +204,7 @@ class Classname(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -234,6 +240,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -246,6 +253,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -270,6 +278,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 33be1732c8e..93f82b18abf 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_default from . import parameter_0 @@ -75,6 +75,8 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -94,6 +96,8 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,6 +169,8 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +190,8 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -213,6 +221,8 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,6 +242,8 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 fad8a9adf55..bdcaf7c1203 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_default from . import parameter_0 @@ -62,6 +62,8 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -81,6 +83,8 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -152,6 +156,8 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +177,8 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -200,6 +208,8 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, ]: ... @typing.overload @@ -219,6 +229,8 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 1403f1bc908..563a0b5cf18 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 @@ -53,6 +53,7 @@ def _fake_health_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -72,6 +73,7 @@ def _fake_health_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -137,6 +139,7 @@ def fake_health_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -156,6 +159,7 @@ def fake_health_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -185,6 +189,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -204,6 +209,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d27a419f399..9802bc4425a 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -41,6 +41,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -60,6 +61,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -125,6 +127,7 @@ class FakeHealthGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -144,6 +147,7 @@ class FakeHealthGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -173,6 +177,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -192,6 +197,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 6309d9fdd89..18da43de164 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -52,6 +52,7 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -63,6 +64,7 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -85,6 +87,7 @@ def _inline_additional_properties_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,6 +165,7 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -173,6 +177,7 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ def inline_additional_properties( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -227,6 +233,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -238,6 +245,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -260,6 +268,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 0c25febe7d5..62740402de7 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -150,6 +153,7 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -161,6 +165,7 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -183,6 +188,7 @@ class InlineAdditionalProperties(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -215,6 +221,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -226,6 +233,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -248,6 +256,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 80e65e7927d..f6c6ef15936 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 from . import parameter_1 @@ -85,6 +85,7 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -98,6 +99,7 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -111,6 +113,7 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -137,6 +140,7 @@ def _inline_composition_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +235,7 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,6 +249,7 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -257,6 +263,7 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -283,6 +290,7 @@ def inline_composition( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -321,6 +329,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -334,6 +343,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -347,6 +357,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -373,6 +384,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f7032af4605..ddfa94e1908 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 from . import parameter_1 @@ -73,6 +73,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -86,6 +87,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,6 +101,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -125,6 +128,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,6 +223,7 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,6 +237,7 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +251,7 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -271,6 +278,7 @@ class InlineComposition(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -309,6 +317,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -322,6 +331,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -335,6 +345,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -361,6 +372,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 73cc04ab0d6..c7b127f4179 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -52,6 +52,7 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -63,6 +64,7 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -85,6 +87,7 @@ def _json_form_data_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -193,6 +198,7 @@ def json_form_data( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +231,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -236,6 +243,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -258,6 +266,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 5630e57af53..5eac75739fa 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -148,6 +151,7 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -159,6 +163,7 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -181,6 +186,7 @@ class JsonFormData(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -213,6 +219,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -224,6 +231,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -246,6 +254,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 60b5247ba2d..0e2d243f2bf 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -52,6 +52,7 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -63,6 +64,7 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -85,6 +87,7 @@ def _json_patch_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -193,6 +198,7 @@ def json_patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +231,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -236,6 +243,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -258,6 +266,7 @@ def patch( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ff3296362ea..9bf8cbf8572 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -148,6 +151,7 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -159,6 +163,7 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -181,6 +186,7 @@ class JsonPatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -213,6 +219,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -224,6 +231,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -246,6 +254,7 @@ class ApiForpatch(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f87d8a985f0..586a3c4c9e3 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _json_with_charset_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +175,7 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +188,7 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -208,6 +213,7 @@ def json_with_charset( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,6 +249,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,6 +262,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -279,6 +287,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d4b152c9429..071563e4d77 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -196,6 +201,7 @@ class JsonWithCharset(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +237,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,6 +250,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b4e58ae62fc..a701cca93fc 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -73,6 +73,7 @@ def _object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -92,6 +93,7 @@ def _object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,6 +165,7 @@ def object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -182,6 +185,7 @@ def object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -211,6 +215,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -230,6 +235,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 58b1c7749e6..11aac86023d 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -61,6 +61,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -80,6 +81,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -151,6 +153,7 @@ class ObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -170,6 +173,7 @@ class ObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -199,6 +203,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -218,6 +223,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py index 81556106762..9da365076f3 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 from . import parameter_1 @@ -201,6 +201,7 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -217,6 +218,7 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -249,6 +251,7 @@ def _parameter_collisions_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -369,6 +372,7 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -385,6 +389,7 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -417,6 +422,7 @@ def parameter_collisions( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -464,6 +470,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -480,6 +487,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -512,6 +520,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi index 0e15fff8276..17a0f4b9fa0 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi +++ b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 from . import parameter_1 @@ -189,6 +189,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -205,6 +206,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -237,6 +239,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -357,6 +360,7 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -373,6 +377,7 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -405,6 +410,7 @@ class ParameterCollisions(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -452,6 +458,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -468,6 +475,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -500,6 +508,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 75fb23d8d81..5982d6f672f 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -85,6 +85,7 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -98,6 +99,7 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -124,6 +126,7 @@ def _upload_file_with_required_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,6 +222,7 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,6 +236,7 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -258,6 +263,7 @@ def upload_file_with_required_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -296,6 +302,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -309,6 +316,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -335,6 +343,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4451036f4e9..299d2cfb42b 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -69,6 +69,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -82,6 +83,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -108,6 +110,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -203,6 +206,7 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -216,6 +220,7 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -242,6 +247,7 @@ class UploadFileWithRequiredFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -280,6 +286,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -293,6 +300,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -319,6 +327,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 37161474855..d864746404a 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -78,6 +78,7 @@ def _query_param_with_json_content_type_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -99,6 +100,7 @@ def _query_param_with_json_content_type_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -178,6 +180,7 @@ def query_param_with_json_content_type( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -199,6 +202,7 @@ def query_param_with_json_content_type( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +235,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -252,6 +257,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 331d0b554da..55c3f5f75f4 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -66,6 +66,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -87,6 +88,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -166,6 +168,7 @@ class QueryParamWithJsonContentType(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -187,6 +190,7 @@ class QueryParamWithJsonContentType(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,6 +223,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -240,6 +245,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 1e1f8c0c546..a8d0a686ee7 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -73,6 +73,7 @@ def _ref_object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -92,6 +93,7 @@ def _ref_object_in_query_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,6 +165,7 @@ def ref_object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -182,6 +185,7 @@ def ref_object_in_query( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -211,6 +215,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -230,6 +235,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a66ce00120e..1257270e5e6 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 @@ -61,6 +61,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -80,6 +81,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -151,6 +153,7 @@ class RefObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -170,6 +173,7 @@ class RefObjectInQuery(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -199,6 +203,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -218,6 +223,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b334e48cb49..93661a015b3 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _array_of_enums_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +175,7 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +188,7 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -208,6 +213,7 @@ def array_of_enums( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,6 +249,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,6 +262,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -279,6 +287,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8ef5e5c4cd5..0a4faa8ea47 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -196,6 +201,7 @@ class ArrayOfEnums(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +237,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,6 +250,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 dff3b4f32bb..f2f68bdf756 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _array_model_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def array_model( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 32e439f27e9..cd3d313a4f9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class ArrayModel(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 ef0b3e28453..85c125cde70 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _boolean_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def boolean( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 28d204945a9..72f00177794 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class Boolean(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 59fc43ebae0..eb0b7c2bce2 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _composed_one_of_different_types_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def composed_one_of_different_types( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 6285b391c27..05d94456169 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class ComposedOneOfDifferentTypes(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 78c6a8630b6..90c6d903ebd 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _string_enum_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def string_enum( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 31b805c6d28..45ed814109b 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class StringEnum(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b3c3067e77e..43f29ab8469 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _mammal_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -173,6 +176,7 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -185,6 +189,7 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -209,6 +214,7 @@ def mammal( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -244,6 +250,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -256,6 +263,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -280,6 +288,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8abedadcd1b..6d6cff8f993 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -161,6 +164,7 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -173,6 +177,7 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -197,6 +202,7 @@ class Mammal(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -232,6 +238,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,6 +251,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -268,6 +276,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 436323ea01d..a0efc483a8a 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _number_with_validations_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def number_with_validations( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4abd893cd96..7b5eca8a8c9 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class NumberWithValidations(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 83af9ae93a6..92258f44727 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _object_model_with_ref_props_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def object_model_with_ref_props( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 74d8a47c9fb..5590a158b27 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class ObjectModelWithRefProps(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 99c84622531..a9e8bbb0b2f 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _string_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +174,7 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -183,6 +187,7 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -207,6 +212,7 @@ def string( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +248,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -254,6 +261,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -278,6 +286,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e92d4531159..650364d9fab 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -159,6 +162,7 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -195,6 +200,7 @@ class String(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -230,6 +236,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -242,6 +249,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -266,6 +274,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b90c889bda9..cb6e7c327f4 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 @@ -54,6 +54,7 @@ def _response_without_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -73,6 +74,7 @@ def _response_without_schema_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -138,6 +140,7 @@ def response_without_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -157,6 +160,7 @@ def response_without_schema( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -186,6 +190,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -205,6 +210,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a7b8c730514..b4fdaad57f0 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -42,6 +42,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -61,6 +62,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -126,6 +128,7 @@ class ResponseWithoutSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -145,6 +148,7 @@ class ResponseWithoutSchema(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +178,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -193,6 +198,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 70fd17d7a1f..fc7242de04a 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -88,6 +88,7 @@ def _query_parameter_collection_format_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -107,6 +108,7 @@ def _query_parameter_collection_format_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -177,6 +179,7 @@ def query_parameter_collection_format( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -196,6 +199,7 @@ def query_parameter_collection_format( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +229,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,6 +249,7 @@ def put( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 46d9aa4adf4..05cffad0fb7 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 @@ -76,6 +76,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -95,6 +96,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,6 +167,7 @@ class QueryParameterCollectionFormat(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +187,7 @@ class QueryParameterCollectionFormat(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -213,6 +217,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,6 +237,7 @@ class ApiForput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 be577aa5deb..399b6e95e02 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _upload_download_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +177,7 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -186,6 +190,7 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -210,6 +215,7 @@ def upload_download_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -245,6 +251,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -257,6 +264,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -281,6 +289,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a3a0550f989..22337624c06 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -162,6 +165,7 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -174,6 +178,7 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -198,6 +203,7 @@ class UploadDownloadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -233,6 +239,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +252,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -269,6 +277,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 981571e0f10..3b3387a1ff1 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _upload_file_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +175,7 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +188,7 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -208,6 +213,7 @@ def upload_file( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,6 +249,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,6 +262,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -279,6 +287,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 74837b82d5d..dbb3ac21494 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -196,6 +201,7 @@ class UploadFile(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +237,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,6 +250,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 70e20d75b00..a03936af5f8 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body @@ -56,6 +56,7 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -68,6 +69,7 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -92,6 +94,7 @@ def _upload_files_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +175,7 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -184,6 +188,7 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -208,6 +213,7 @@ def upload_files( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -243,6 +249,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -255,6 +262,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -279,6 +287,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 dbeb6980c13..8d9a70afa70 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body _all_accept_content_types = ( @@ -44,6 +44,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -56,6 +57,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -80,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +176,7 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -196,6 +201,7 @@ class UploadFiles(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -231,6 +237,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -243,6 +250,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -267,6 +275,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 5d1cfad8646..652c3a01d76 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_default @@ -52,6 +52,7 @@ def _foo_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -71,6 +72,7 @@ def _foo_get_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -134,6 +136,7 @@ def foo_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -153,6 +156,7 @@ def foo_get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -182,6 +186,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -201,6 +206,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 c06ce454fe9..434ffc978e7 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_default _all_accept_content_types = ( 'application/json', @@ -41,6 +41,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -60,6 +61,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -123,6 +125,7 @@ class FooGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -142,6 +145,7 @@ class FooGet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +175,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -190,6 +195,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 889117d4f62..451832591e2 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 @@ -27,8 +27,8 @@ from petstore_api.components.request_bodies import pet_request_body as request_body from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_405 _auth = [ @@ -72,6 +72,7 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -84,6 +85,7 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -96,6 +98,7 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -120,6 +123,7 @@ def _add_pet_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -204,6 +208,7 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -216,6 +221,7 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -228,6 +234,7 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -252,6 +259,7 @@ def add_pet( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -287,6 +295,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -299,6 +308,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -311,6 +321,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -335,6 +346,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 e1e29751a94..a4b8f8edaf2 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 @@ -26,8 +26,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_405 @@ -42,6 +42,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -54,6 +55,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -66,6 +68,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -90,6 +93,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +178,7 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -186,6 +191,7 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -198,6 +204,7 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -222,6 +229,7 @@ class AddPet(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -257,6 +265,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -269,6 +278,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -281,6 +291,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -305,6 +316,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 dc32d8237d7..68cefbb7c99 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 @@ -27,9 +27,9 @@ from petstore_api.components.request_bodies import pet_request_body as request_body from .. import path -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 +from . import response_for_405 _auth = [ 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 aad93e5c615..614e1db0e82 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 @@ -26,9 +26,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 +from . import response_for_405 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 0931a88072b..948ada7c123 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 @@ -87,6 +87,7 @@ def _find_pets_by_status_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -108,6 +109,7 @@ def _find_pets_by_status_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -189,6 +191,7 @@ def find_pets_by_status( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -210,6 +213,7 @@ def find_pets_by_status( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +246,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -263,6 +268,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 4c79371d4bd..b6af738bcec 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 @@ -68,6 +68,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -89,6 +90,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -170,6 +172,7 @@ class FindPetsByStatus(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -191,6 +194,7 @@ class FindPetsByStatus(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -223,6 +227,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,6 +249,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 60150362f3e..e55350c96cd 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 @@ -87,6 +87,7 @@ def _find_pets_by_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -108,6 +109,7 @@ def _find_pets_by_tags_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -189,6 +191,7 @@ def find_pets_by_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -210,6 +213,7 @@ def find_pets_by_tags( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -242,6 +246,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -263,6 +268,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 adc29beb4f6..434d06a608a 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 @@ -68,6 +68,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -89,6 +90,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -170,6 +172,7 @@ class FindPetsByTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -191,6 +194,7 @@ class FindPetsByTags(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -223,6 +227,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -244,6 +249,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 799510cd5e9..b5390fdb492 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_400 from . import parameter_0 from . import parameter_1 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 9ce72604830..057d7d27cf1 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_400 from . import parameter_0 from . import parameter_1 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 67629a44ece..708cf6c6d2b 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -89,6 +89,7 @@ def _get_pet_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -110,6 +111,7 @@ def _get_pet_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -192,6 +194,7 @@ def get_pet_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -213,6 +216,7 @@ def get_pet_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -245,6 +249,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -266,6 +271,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 756ff5ec4f6..7b1b670af51 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -69,6 +69,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,6 +91,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +174,7 @@ class GetPetById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -193,6 +196,7 @@ class GetPetById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +229,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -246,6 +251,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 16306e3c26b..580087cc5c7 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_405 from . import request_body from . import parameter_0 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 9796e7012ca..1ebe5cb3965 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_405 from . import request_body from . import parameter_0 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 baa8e6da7db..69950b6481f 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -85,6 +85,7 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -98,6 +99,7 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -124,6 +126,7 @@ def _upload_image_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -219,6 +222,7 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -232,6 +236,7 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -258,6 +263,7 @@ def upload_image( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -296,6 +302,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -309,6 +316,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -335,6 +343,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 24a2e79b5a4..d676b27e657 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 from . import request_body from . import parameter_0 @@ -69,6 +69,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -82,6 +83,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -108,6 +110,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -203,6 +206,7 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -216,6 +220,7 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -242,6 +247,7 @@ class UploadImage(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -280,6 +286,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -293,6 +300,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -319,6 +327,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 a9b0fd1441a..a0a32448a44 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_200 _auth = [ @@ -57,6 +57,7 @@ def _get_inventory_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -76,6 +77,7 @@ def _get_inventory_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -142,6 +144,7 @@ def get_inventory( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -161,6 +164,7 @@ def get_inventory( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -190,6 +194,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -209,6 +214,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b7eedef5cb3..a5844e0e25d 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_200 _all_accept_content_types = ( 'application/json', @@ -41,6 +41,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -60,6 +61,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -126,6 +128,7 @@ class GetInventory(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -145,6 +148,7 @@ class GetInventory(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -174,6 +178,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -193,6 +198,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 abb3ab14ad6..735264479a5 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import request_body @@ -60,6 +60,7 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -72,6 +73,7 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -96,6 +98,7 @@ def _place_order_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -179,6 +182,7 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -191,6 +195,7 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -215,6 +220,7 @@ def place_order( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -250,6 +256,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -262,6 +269,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -286,6 +294,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 f88632cd3bd..419ac86c3b7 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import request_body _all_accept_content_types = ( @@ -46,6 +46,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -58,6 +59,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -82,6 +84,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -165,6 +168,7 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -177,6 +181,7 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -201,6 +206,7 @@ class PlaceOrder(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -236,6 +242,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -248,6 +255,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @@ -272,6 +280,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 0a9bee0e0c6..69784f79b2e 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 from . import parameter_0 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 77f40a8a11b..967e001b5e0 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 from . import parameter_0 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 1417d4798f6..9726351b70a 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -85,6 +85,7 @@ def _get_order_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -106,6 +107,7 @@ def _get_order_by_id_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -187,6 +189,7 @@ def get_order_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -208,6 +211,7 @@ def get_order_by_id( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -240,6 +244,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,6 +266,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 31680d78ec4..3de21cbaf35 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -69,6 +69,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,6 +91,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +173,7 @@ class GetOrderById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -192,6 +195,7 @@ class GetOrderById(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -224,6 +228,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +250,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 2630f2b4ba6..d29aae2457d 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 @@ -26,7 +26,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_default from . import request_body @@ -51,6 +51,7 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -62,6 +63,7 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -84,6 +86,7 @@ def _create_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -193,6 +198,7 @@ def create_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +231,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -236,6 +243,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -258,6 +266,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b0d447dc118..7b0a15d89c8 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 @@ -25,7 +25,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_default from . import request_body @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -149,6 +152,7 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -160,6 +164,7 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -182,6 +187,7 @@ class CreateUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,6 +220,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -225,6 +232,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -247,6 +255,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b38c4917e6a..2c35425adf2 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import user_array_request_body as request_body from .. import path -from . import response_for_ +from . import response_for_default @@ -51,6 +51,7 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -62,6 +63,7 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -84,6 +86,7 @@ def _create_users_with_array_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -193,6 +198,7 @@ def create_users_with_array_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +231,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -236,6 +243,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -258,6 +266,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 1f1b5813286..6ee7b27472b 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import user_array_request_body as request_body -from . import response_for_ +from . import response_for_default @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -149,6 +152,7 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -160,6 +164,7 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -182,6 +187,7 @@ class CreateUsersWithArrayInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,6 +220,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -225,6 +232,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -247,6 +255,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 1c296f9be03..87ad3adc159 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 @@ -27,7 +27,7 @@ from petstore_api.components.request_bodies import user_array_request_body as request_body from .. import path -from . import response_for_ +from . import response_for_default @@ -51,6 +51,7 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -62,6 +63,7 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -84,6 +86,7 @@ def _create_users_with_list_input_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -160,6 +163,7 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -171,6 +175,7 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -193,6 +198,7 @@ def create_users_with_list_input( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +231,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -236,6 +243,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -258,6 +266,7 @@ def post( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 d4a65b6b24a..2cd946c3464 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 @@ -26,7 +26,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import user_array_request_body as request_body -from . import response_for_ +from . import response_for_default @@ -40,6 +40,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -51,6 +52,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -73,6 +75,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -149,6 +152,7 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -160,6 +164,7 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -182,6 +187,7 @@ class CreateUsersWithListInput(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -214,6 +220,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -225,6 +232,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @@ -247,6 +255,7 @@ class ApiForpost(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 aa26c6fde57..b1e1d1fcaf1 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 from . import parameter_1 @@ -85,6 +85,7 @@ def _login_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -106,6 +107,7 @@ def _login_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -186,6 +188,7 @@ def login_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -207,6 +210,7 @@ def login_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -239,6 +243,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -260,6 +265,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 3d407a6037c..8829fa03bb1 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 from . import parameter_0 from . import parameter_1 @@ -71,6 +71,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -92,6 +93,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -172,6 +174,7 @@ class LoginUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -193,6 +196,7 @@ class LoginUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -225,6 +229,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -246,6 +251,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 b9b76a1dd22..0190b08e3c1 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 @@ -25,7 +25,7 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ +from . import response_for_default @@ -47,6 +47,7 @@ def _logout_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -64,6 +65,7 @@ def _logout_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -120,6 +122,7 @@ def logout_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -137,6 +140,7 @@ def logout_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -163,6 +167,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -180,6 +185,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 bdd1e29c7d4..a45aff1eb92 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 @@ -24,7 +24,7 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ +from . import response_for_default @@ -36,6 +36,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -53,6 +54,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -109,6 +111,7 @@ class LogoutUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -126,6 +129,7 @@ class LogoutUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -152,6 +156,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_default.ApiResponse, ]: ... @typing.overload @@ -169,6 +174,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 914522e6082..4c1621b57a1 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 @@ -25,8 +25,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import parameter_0 @@ -76,6 +76,7 @@ def _delete_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -95,6 +96,7 @@ def _delete_user_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -167,6 +169,7 @@ def delete_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -186,6 +189,7 @@ def delete_user( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -215,6 +219,7 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -234,6 +239,7 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 8a2b098c1cb..10cd329e030 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 @@ -24,8 +24,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_404 from . import parameter_0 @@ -62,6 +62,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -81,6 +82,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -153,6 +155,7 @@ class DeleteUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -172,6 +175,7 @@ class DeleteUser(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -201,6 +205,7 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -220,6 +225,7 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 bafa334daf7..f70a8fea25e 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 @@ -26,9 +26,9 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -85,6 +85,7 @@ def _get_user_by_name_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -106,6 +107,7 @@ def _get_user_by_name_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -187,6 +189,7 @@ def get_user_by_name( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -208,6 +211,7 @@ def get_user_by_name( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -240,6 +244,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -261,6 +266,7 @@ def get( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 9bf770749ea..800d174be9e 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 @@ -25,9 +25,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ -from . import response_for_ +from . import response_for_200 +from . import response_for_400 +from . import response_for_404 from . import parameter_0 @@ -69,6 +69,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -90,6 +91,7 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -171,6 +173,7 @@ class GetUserByName(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -192,6 +195,7 @@ class GetUserByName(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -224,6 +228,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ + response_for_200.ApiResponse, ]: ... @typing.overload @@ -245,6 +250,7 @@ class ApiForget(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ + response_for_200.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 c9ebff2ec1b..659700c3c7e 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 @@ -26,8 +26,8 @@ from petstore_api import schemas # noqa: F401 from .. import path -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 from . import request_body from . import parameter_0 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 3d3a797eec3..5b9e01539ca 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 -from . import response_for_ -from . import response_for_ +from . import response_for_400 +from . import response_for_404 from . import request_body from . import parameter_0 From 52024b6463205e3f7396ad356e074912776a4fca Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:12:37 -0800 Subject: [PATCH 07/44] Endpoint doc template update --- .../resources/python/endpoint_doc.handlebars | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 357dea66ad1..6b7241e31cb 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -157,34 +157,33 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -{{#each responses}} -{{#if isDefault}} +{{#if defaultResponse}} default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{message}} -{{else}} -{{code}} | [response_for_{{code}}.ApiResponse](#response_for_{{code}}.ApiResponse) | {{message}} {{/if}} +{{#each nonDefaultResponses}} +{{@key}} | [response_for_{{@key}}.ApiResponse](#response_for_{{@key}}.ApiResponse) | {{message}} {{/each}} {{#each responses}} -{{#if isDefault}} +{{#eq @key "default"}} #### response_for_default.ApiResponse {{else}} -#### response_for_{{code}}.ApiResponse -{{/if}} +#### response_for_{{@key}}.ApiResponse +{{/eq}} Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{code}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{code}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | -headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{code}}.Headers](#response_for_{{code}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | +body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{@key}}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{@key}}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | +headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}}.Headers](#response_for_{{@key}}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../code schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key} schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/each}} {{#if responseHeaders}} -#### response_for_{{code}}.Headers +#### response_for_{{@key}}}.Headers Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- From ab1df57d9fc94f32620ea249fbc3cb2a92f677b7 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:14:26 -0800 Subject: [PATCH 08/44] Template typo fix --- .../src/main/resources/python/endpoint_doc.handlebars | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 6b7241e31cb..79dea500a66 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -169,13 +169,13 @@ default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) #### response_for_default.ApiResponse {{else}} -#### response_for_{{@key}}.ApiResponse +#### response_for_{{@key}}.ApiResponse {{/eq}} Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{@key}}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{@key}}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | -headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}}.Headers](#response_for_{{@key}}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | +body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | +headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers](#response_for_{{@key}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | {{#each content}} {{#with this.schema}} @@ -183,7 +183,7 @@ headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}}.Header {{/with}} {{/each}} {{#if responseHeaders}} -#### response_for_{{@key}}}.Headers +#### response_for_{{@key}}.Headers Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- From 28014897246798865b73fd004881ae0d41f049b8 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:26:01 -0800 Subject: [PATCH 09/44] Uses integers for status codes and wildcard keys, sample regen --- .../codegen/CodegenOperation.java | 4 +-- .../openapitools/codegen/DefaultCodegen.java | 4 +-- .../resources/python/endpoint_doc.handlebars | 10 +++--- .../endpoint_response_type_hint.handlebars | 35 +++---------------- .../call_123_test_special_tags.md | 8 ++--- .../docs/apis/tags/default_api/foo_get.md | 8 ++--- ...ditional_properties_with_array_of_enums.md | 8 ++--- .../docs/apis/tags/fake_api/array_model.md | 8 ++--- .../docs/apis/tags/fake_api/array_of_enums.md | 8 ++--- .../tags/fake_api/body_with_file_schema.md | 4 +-- .../tags/fake_api/body_with_query_params.md | 4 +-- .../python/docs/apis/tags/fake_api/boolean.md | 8 ++--- .../tags/fake_api/case_sensitive_params.md | 4 +-- .../docs/apis/tags/fake_api/client_model.md | 8 ++--- .../composed_one_of_different_types.md | 8 ++--- .../docs/apis/tags/fake_api/delete_coffee.md | 8 ++--- .../apis/tags/fake_api/endpoint_parameters.md | 8 ++--- .../apis/tags/fake_api/enum_parameters.md | 12 +++---- .../apis/tags/fake_api/fake_health_get.md | 8 ++--- .../apis/tags/fake_api/group_parameters.md | 4 +-- .../fake_api/inline_additional_properties.md | 4 +-- .../apis/tags/fake_api/inline_composition.md | 10 +++--- .../docs/apis/tags/fake_api/json_form_data.md | 4 +-- .../docs/apis/tags/fake_api/json_patch.md | 4 +-- .../apis/tags/fake_api/json_with_charset.md | 8 ++--- .../python/docs/apis/tags/fake_api/mammal.md | 8 ++--- .../tags/fake_api/number_with_validations.md | 8 ++--- .../apis/tags/fake_api/object_in_query.md | 4 +-- .../fake_api/object_model_with_ref_props.md | 8 ++--- .../tags/fake_api/parameter_collisions.md | 8 ++--- .../query_param_with_json_content_type.md | 8 ++--- .../query_parameter_collection_format.md | 4 +-- .../apis/tags/fake_api/ref_object_in_query.md | 4 +-- .../tags/fake_api/response_without_schema.md | 4 +-- .../python/docs/apis/tags/fake_api/string.md | 8 ++--- .../docs/apis/tags/fake_api/string_enum.md | 8 ++--- .../tags/fake_api/upload_download_file.md | 8 ++--- .../docs/apis/tags/fake_api/upload_file.md | 8 ++--- .../docs/apis/tags/fake_api/upload_files.md | 8 ++--- .../fake_classname_tags123_api/classname.md | 8 ++--- .../python/docs/apis/tags/pet_api/add_pet.md | 8 ++--- .../docs/apis/tags/pet_api/delete_pet.md | 4 +-- .../apis/tags/pet_api/find_pets_by_status.md | 14 ++++---- .../apis/tags/pet_api/find_pets_by_tags.md | 14 ++++---- .../docs/apis/tags/pet_api/get_pet_by_id.md | 18 +++++----- .../docs/apis/tags/pet_api/update_pet.md | 12 +++---- .../apis/tags/pet_api/update_pet_with_form.md | 4 +-- .../pet_api/upload_file_with_required_file.md | 8 ++--- .../docs/apis/tags/pet_api/upload_image.md | 8 ++--- .../docs/apis/tags/store_api/delete_order.md | 8 ++--- .../docs/apis/tags/store_api/get_inventory.md | 8 ++--- .../apis/tags/store_api/get_order_by_id.md | 18 +++++----- .../docs/apis/tags/store_api/place_order.md | 14 ++++---- .../docs/apis/tags/user_api/create_user.md | 4 +-- .../user_api/create_users_with_array_input.md | 4 +-- .../user_api/create_users_with_list_input.md | 4 +-- .../docs/apis/tags/user_api/delete_user.md | 8 ++--- .../apis/tags/user_api/get_user_by_name.md | 18 +++++----- .../docs/apis/tags/user_api/login_user.md | 24 ++++++------- .../docs/apis/tags/user_api/logout_user.md | 4 +-- .../docs/apis/tags/user_api/update_user.md | 8 ++--- 61 files changed, 245 insertions(+), 270 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java index 836fa2b63bd..6b33a064c9e 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java @@ -46,8 +46,8 @@ public class CodegenOperation { public List authMethods; public Map tags; public TreeMap responses = new TreeMap<>(); - public TreeMap statusCodeResponses = new TreeMap<>(); - public TreeMap wildcardCodeResponses = new TreeMap<>(); + public TreeMap statusCodeResponses = new TreeMap<>(); + public TreeMap wildcardCodeResponses = new TreeMap<>(); public TreeMap nonDefaultResponses = new TreeMap<>(); public CodegenResponse defaultResponse = null; diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index dfa11cc97dc..7d5bd0362ed 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4270,9 +4270,9 @@ public CodegenOperation fromOperation(String path, op.nonDefaultResponses.put(key, r); if (key.endsWith("XX") && key.length() == 3) { String firstNumber = key.substring(0, 1); - op.wildcardCodeResponses.put(firstNumber, r); + op.wildcardCodeResponses.put(Integer.parseInt(firstNumber), r); } else { - op.statusCodeResponses.put(key, r); + op.statusCodeResponses.put(Integer.parseInt(key), r); } } } diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 79dea500a66..b5d5940959d 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -179,7 +179,7 @@ headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key} schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/each}} {{#if responseHeaders}} @@ -190,13 +190,13 @@ Key | Accessed Type | Description | Notes {{#each responseHeaders}} {{#if schema}} {{#with schema}} -{{../baseName}} | [response_for_{{../code}}.{{../paramName}}.schema](#response_for_{{../code}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} +{{../baseName}} | [response_for_{{../@key}}.{{../paramName}}.schema](#response_for_{{../@key}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} {{/with}} {{else}} {{#each getContent}} {{#with this}} {{#with schema}} -{{../baseName}} | [response_for_{{../code}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../code}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} +{{../baseName}} | [response_for_{{../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} {{/with}} {{/with}} {{/each}} @@ -206,14 +206,14 @@ Key | Accessed Type | Description | Notes {{#if schema}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../code schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{else}} {{#each getContent}} {{#with this}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../code schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/with}} {{/each}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars index 92fdd108850..7c2983c9ac7 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars @@ -2,39 +2,14 @@ response_for_default.ApiResponse, {{/if}} {{#each statusCodeResponses}} -{{#eq @key "200"}} +{{#gte @key 200}} +{{#lte @key 299}} response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "201"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "202"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "203"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "204"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "205"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "206"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "207"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "208"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} -{{#eq @key "226"}} -response_for_{{@key}}.ApiResponse, -{{/eq}} +{{/lte}} +{{/gte}} {{/each}} {{#each wildcardCodeResponses}} -{{#eq @key "2"}} +{{#eq @key 2}} response_for_{{@key}}xx.ApiResponse, {{/eq}} {{/each}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index 052b5b2e724..68f035f50f2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -51,16 +51,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index dcd331f54d2..15c56a4c023 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -34,16 +34,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | response +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_default.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index bd8153c127f..0d94b5aed58 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -58,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Got object with additional properties with array of enums +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Got object with additional properties with array of enums -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**AdditionalPropertiesWithArrayOfEnums**](../../../components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index 2cca654b854..795f15f41c9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -56,16 +56,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**AnimalFarm**](../../../components/schema/animal_farm.AnimalFarm.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index 953bb156b27..7856c375e2c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -56,16 +56,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Got named array of enums +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Got named array of enums -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ArrayOfEnums**](../../../components/schema/array_of_enums.ArrayOfEnums.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index 39dbc246df9..d08986d4e8d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -60,9 +60,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index e4ead1645d5..dcd61df3f2c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -85,9 +85,9 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index 5424aa1323a..acabb3e89ef 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -54,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output boolean +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output boolean -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Boolean**](../../../components/schema/boolean.Boolean.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index ed8589bb1e0..30e7b8d6f10 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -80,9 +80,9 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index e01eb2a753c..c7f1bb979b1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -51,16 +51,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index e8118b70814..c17541be897 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -54,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ComposedOneOfDifferentTypes**](../../../components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index bd2e15b31e0..ed7a7d3d98b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Unexpected error +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 13b824a5551..5e8f67d8469 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -101,17 +101,17 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success - | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index ddc661e546c..8d9ecce438b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -172,24 +172,24 @@ str, | str, | | must be one of ["_abc", "-efg", "(xyz)", ] if omitted the ser Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_404.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 210d3e157af..6cb549615a2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -36,16 +36,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | The instance started successfully +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | The instance started successfully -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**HealthCheckResult**](../../../components/schema/health_check_result.HealthCheckResult.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index cc3838c0320..01ad8de4897 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -146,9 +146,9 @@ str, | str, | | must be one of ["true", "false", ] Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index eb4ce67f9bd..8f4b20dad64 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -61,9 +61,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index f07efe119d1..6284faf0102 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -170,16 +170,16 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), [response_for_.multipart_form_data](#response_for_.multipart_form_data), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), [response_for_multipart/form-data.multipart_form_data](#response_for_multipart/form-data.multipart_form_data), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -199,7 +199,7 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -# response_for_..multipart_form_data +# response_for_200.multipart_form_data ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 7cac0800080..8f4cc9aed1f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -64,9 +64,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 66445f9736d..6b5c3b297d8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -57,9 +57,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index 54a801ad26b..7cbfd74230d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -55,16 +55,16 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json_charsetutf_8](#response_for_.application_json_charsetutf_8), ] | | +body | typing.Union[[response_for_application/json; charset=utf-8.application_json_charsetutf_8](#response_for_application/json; charset=utf-8.application_json_charsetutf_8), ] | | headers | Unset | headers were not defined | -# response_for_..application_json_charsetutf_8 +# response_for_200.application_json_charsetutf_8 ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index 81396957f2f..e08c7770054 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -58,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output mammal +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output mammal -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Mammal**](../../../components/schema/mammal.Mammal.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index df5f1f062d3..954b2751a13 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -54,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output number +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output number -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**NumberWithValidations**](../../../components/schema/number_with_validations.NumberWithValidations.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index c1146f78ec2..04bf81e35ce 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -70,9 +70,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index 35e492be4e6..d3941830ec1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -58,16 +58,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output model +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output model -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ObjectModelWithRefProps**](../../../components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index 51dedbc2ca9..69c4b96f865 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -292,16 +292,16 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 79cdffea87d..29933336d96 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -56,16 +56,16 @@ someParam | [parameter_0.schema](#parameter_0.schema) | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index fa9ac0c8006..ae7a58d6cb7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -141,9 +141,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index c3e27f21c25..2801cf3e3cf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -63,9 +63,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index 6036440b9ae..3551eb6e224 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -36,9 +36,9 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | contents without schema definition +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | contents without schema definition -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index a263e787bf4..6b96a357aad 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -54,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output string +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output string -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**String**](../../../components/schema/string.String.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 65cb20aa187..4fb9a8548fc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -54,16 +54,16 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Output enum +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Output enum -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**StringEnum**](../../../components/schema/string_enum.StringEnum.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index 1f8cae8eb76..a37ce658de1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -57,16 +57,16 @@ bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to upload | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_octet_stream](#response_for_.application_octet_stream), ] | | +body | typing.Union[[response_for_application/octet-stream.application_octet_stream](#response_for_application/octet-stream.application_octet_stream), ] | | headers | Unset | headers were not defined | -# response_for_..application_octet_stream +# response_for_200.application_octet_stream file to download diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 5d653cdaea8..6d8a1476e67 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -65,16 +65,16 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index cc217f4e674..829a13c3d3c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -77,16 +77,16 @@ items | bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index e50f4a7ca25..642bb24b1a2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -62,16 +62,16 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../../components/schema/client.Client.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index ea9c4cb986e..cea0ad3411c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -137,17 +137,17 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid input +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_405.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index ea0805b2da9..bc2e52dc6c6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -106,9 +106,9 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid pet value +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid pet value -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index b307c102bcd..44735a97221 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -143,17 +143,17 @@ items | str, | str, | | must be one of ["available", "pending", "sold", ] if Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid status value +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid status value -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -165,7 +165,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -177,7 +177,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index bd72bc7e614..5eb28f7712a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -143,17 +143,17 @@ items | str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid tag value +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid tag value -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -165,7 +165,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -177,7 +177,7 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index 8ac32a04153..f17aabf9df0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -75,37 +75,37 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Pet not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Pet not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../../components/schema/pet.Pet.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index 3724ddf184a..00faa3b5ffb 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -135,25 +135,25 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Pet not found - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Validation exception +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Pet not found +405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Validation exception -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_405.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index 906fccceacc..f5e969baa73 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -106,9 +106,9 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid input +405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input -#### response_for_.ApiResponse +#### response_for_405.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 7c19abc5f59..9cace58746b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -107,16 +107,16 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index cb6c8f0e427..efc0b8661ad 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -107,16 +107,16 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index c68e432a3dd..1c55ffabb57 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Order not found +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Order not found -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index 00412e75658..f90c05d175c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -49,16 +49,16 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index e2fc158992d..167c2671e06 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -64,37 +64,37 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid ID supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Order not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid ID supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Order not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index f9670e5fbd2..12c1d9c4fe3 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -61,29 +61,29 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid Order +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid Order -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**Order**](../../../components/schema/order.Order.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index a01c9f9901f..75ddf3947e3 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -69,9 +69,9 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index 68c6c3e0927..232eff5afd2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -62,9 +62,9 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index c1d33186374..6e8d6288c18 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -62,9 +62,9 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index da275fc4890..b982fdf4061 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -63,17 +63,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success - | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index 6aabdc25ea1..a9576612659 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -62,37 +62,37 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid username supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid username supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | headers | Unset | headers were not defined | -# response_for_..application_xml +# response_for_200.application_xml Type | Description | Notes ------------- | ------------- | ------------- [**User**](../../../components/schema/user.User.md) | | -# response_for_..application_json +# response_for_200.application_json Type | Description | Notes ------------- | ------------- | ------------- [**User**](../../../components/schema/user.User.md) | | -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index fb1642eaec4..b3832d01615 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -72,35 +72,35 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | successful operation - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid username/password supplied +200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid username/password supplied -#### response_for_.ApiResponse +#### response_for_200.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_.application_xml](#response_for_.application_xml), [response_for_.application_json](#response_for_.application_json), ] | | -headers | [response_for_.Headers](#response_for_.Headers) | | +body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +headers | [response_for_200.Headers](#response_for_200.Headers) | | -# response_for_..application_xml +# response_for_200.application_xml ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -# response_for_..application_json +# response_for_200.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -#### response_for_.Headers +#### response_for_200.Headers Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- -X-Rate-Limit | [response_for_.parameter_x_rate_limit.application_json](#response_for_.parameter_x_rate_limit.application_json) | | optional -X-Expires-After | [response_for_.parameter_x_expires_after.schema](#response_for_.parameter_x_expires_after.schema) | | optional +X-Rate-Limit | [response_for_application/json.parameter_x_rate_limit.application_json](#response_for_application/json.parameter_x_rate_limit.application_json) | | optional +X-Expires-After | [response_for_1.parameter_x_expires_after.schema](#response_for_1.parameter_x_expires_after.schema) | | optional # response_for_.parameter_x_rate_limit..application_json @@ -109,14 +109,14 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 32 bit integer -# response_for_.parameter_x_expires_after..schema +# response_for_200.parameter_x_expires_after.schema ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index f68370d9a5b..7a3a9529426 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -36,9 +36,9 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Success +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | -#### response_for_.ApiResponse +#### response_for_default.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index 1df4c3c6543..999d9d49085 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -88,17 +88,17 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned - | [response_for_.ApiResponse](#response_for_.ApiResponse) | Invalid user supplied - | [response_for_.ApiResponse](#response_for_.ApiResponse) | User not found +400 | [response_for_400.ApiResponse](#response_for_400.ApiResponse) | Invalid user supplied +404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_.ApiResponse +#### response_for_400.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -#### response_for_.ApiResponse +#### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | From 3173f4b0dea1d3803713a0cc1ce1d5d7374e286a Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:36:26 -0800 Subject: [PATCH 10/44] Sample regen --- .../src/main/resources/python/endpoint.handlebars | 2 +- .../src/main/resources/python/endpoint_doc.handlebars | 7 +------ .../src/main/resources/python/endpoint_test.handlebars | 4 ++-- .../petstore/python/docs/apis/tags/default_api/foo_get.md | 2 +- .../python/docs/apis/tags/fake_api/delete_coffee.md | 2 +- .../petstore/python/docs/apis/tags/user_api/create_user.md | 2 +- .../apis/tags/user_api/create_users_with_array_input.md | 2 +- .../apis/tags/user_api/create_users_with_list_input.md | 2 +- .../petstore/python/docs/apis/tags/user_api/logout_user.md | 2 +- .../test/test_paths/test_another_fake_dummy/test_patch.py | 4 ++-- .../python/test/test_paths/test_fake/test_delete.py | 2 +- .../petstore/python/test/test_paths/test_fake/test_get.py | 2 +- .../python/test/test_paths/test_fake/test_patch.py | 4 ++-- .../petstore/python/test/test_paths/test_fake/test_post.py | 2 +- .../test_get.py | 4 ++-- .../test_paths/test_fake_body_with_file_schema/test_put.py | 2 +- .../test_fake_body_with_query_params/test_put.py | 2 +- .../test_paths/test_fake_case_sensitive_params/test_put.py | 2 +- .../test/test_paths/test_fake_classname_test/test_patch.py | 4 ++-- .../test_paths/test_fake_delete_coffee_id/test_delete.py | 2 +- .../python/test/test_paths/test_fake_health/test_get.py | 4 ++-- .../test_fake_inline_additional_properties/test_post.py | 2 +- .../test_paths/test_fake_inline_composition/test_post.py | 6 +++--- .../test/test_paths/test_fake_json_form_data/test_get.py | 2 +- .../test/test_paths/test_fake_json_patch/test_patch.py | 2 +- .../test_paths/test_fake_json_with_charset/test_post.py | 4 ++-- .../test/test_paths/test_fake_obj_in_query/test_get.py | 2 +- .../test_post.py | 4 ++-- .../test_post.py | 4 ++-- .../test_get.py | 4 ++-- .../test/test_paths/test_fake_ref_obj_in_query/test_get.py | 2 +- .../test_paths/test_fake_refs_array_of_enums/test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_arraymodel/test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_boolean/test_post.py | 4 ++-- .../test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_enum/test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_mammal/test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_number/test_post.py | 4 ++-- .../test_post.py | 4 ++-- .../test/test_paths/test_fake_refs_string/test_post.py | 4 ++-- .../test_fake_response_without_schema/test_get.py | 2 +- .../test_paths/test_fake_test_query_paramters/test_put.py | 2 +- .../test_paths/test_fake_upload_download_file/test_post.py | 4 ++-- .../test/test_paths/test_fake_upload_file/test_post.py | 4 ++-- .../test/test_paths/test_fake_upload_files/test_post.py | 4 ++-- .../petstore/python/test/test_paths/test_foo/test_get.py | 4 ++-- .../petstore/python/test/test_paths/test_pet/test_post.py | 2 +- .../petstore/python/test/test_paths/test_pet/test_put.py | 2 +- .../test/test_paths/test_pet_find_by_status/test_get.py | 6 +++--- .../test/test_paths/test_pet_find_by_tags/test_get.py | 6 +++--- .../python/test/test_paths/test_pet_pet_id/test_delete.py | 2 +- .../python/test/test_paths/test_pet_pet_id/test_get.py | 6 +++--- .../python/test/test_paths/test_pet_pet_id/test_post.py | 2 +- .../test_paths/test_pet_pet_id_upload_image/test_post.py | 4 ++-- .../test/test_paths/test_store_inventory/test_get.py | 4 ++-- .../python/test/test_paths/test_store_order/test_post.py | 6 +++--- .../test_paths/test_store_order_order_id/test_delete.py | 2 +- .../test/test_paths/test_store_order_order_id/test_get.py | 6 +++--- .../petstore/python/test/test_paths/test_user/test_post.py | 2 +- .../test_paths/test_user_create_with_array/test_post.py | 2 +- .../test_paths/test_user_create_with_list/test_post.py | 2 +- .../python/test/test_paths/test_user_login/test_get.py | 6 +++--- .../python/test/test_paths/test_user_logout/test_get.py | 2 +- .../test/test_paths/test_user_username/test_delete.py | 2 +- .../python/test/test_paths/test_user_username/test_get.py | 6 +++--- .../python/test/test_paths/test_user_username/test_put.py | 2 +- 66 files changed, 107 insertions(+), 112 deletions(-) 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 5e7d94f9374..921b1cbe746 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 @@ -25,7 +25,7 @@ from {{packageName}}.components.request_bodies import {{refModule}} as request_b from .. import path {{/unless}} {{#each responses}} -from . import response_for_{{#eq @key "default"}}default{{else}}{{@key}}{{/eq}} +from . import response_for_{{@key}} {{/each}} {{#with bodyParam}} {{#unless refModule}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index b5d5940959d..651d395148d 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -158,19 +158,14 @@ Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned {{#if defaultResponse}} -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{message}} +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{defaultResponse.message}} {{/if}} {{#each nonDefaultResponses}} {{@key}} | [response_for_{{@key}}.ApiResponse](#response_for_{{@key}}.ApiResponse) | {{message}} {{/each}} {{#each responses}} -{{#eq @key "default"}} - -#### response_for_default.ApiResponse -{{else}} #### response_for_{{@key}}.ApiResponse -{{/eq}} Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars index 04ae287f72d..4f3ee608eb9 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars @@ -33,11 +33,11 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#each responses}} {{#if @first}} - response_status = {{code}} + response_status = {{@key}} {{#if content}} {{#each content}} {{#if schema}} - response_body_schema = {{httpMethod}}.response_for_{{#if ../isDefault}}default{{else}}{{code}}{{/if}}.{{#if schema.nameInSnakeCase}}{{schema.name}}{{else}}{{schema.baseName}}{{/if}} + response_body_schema = {{httpMethod}}.response_for_{{../@key}}.{{#if schema.nameInSnakeCase}}{{schema.name}}{{else}}{{schema.baseName}}{{/if}} {{/if}} {{#if this.testCases}} diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 15c56a4c023..2ad377162b7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -34,7 +34,7 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | response #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index ed7a7d3d98b..566d77b4b5e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -63,7 +63,7 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Unexpected error 200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success #### response_for_200.ApiResponse diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index 75ddf3947e3..ffa3b94ba36 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -69,7 +69,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index 232eff5afd2..e8b267d9e04 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -62,7 +62,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index 6e8d6288c18..c9f1e81ab58 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -62,7 +62,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | successful operation #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 7a3a9529426..aa52e8bd682 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -36,7 +36,7 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Success #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py index 18ddd668cab..4e8b1c33fc6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = patch.response_for_.application_json + response_status = 200 + response_body_schema = patch.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py index cc320fd2061..c22a9853256 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py index 26a48a2df6a..f5ec3b73469 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py index cfd1515925d..07c50c0e2a8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = patch.response_for_.application_json + response_status = 200 + response_body_schema = patch.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py index 1443ec9c164..714554981c6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py index 7720c25ecfb..be48f66d5ea 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_json + response_status = 200 + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py index 3d38e53d9ea..792ba93a1e8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py index 5e60b858373..24385ae529e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py index 3cfdf9b9ff0..1f1cb364763 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py index c43354f7fd2..aa816791025 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = patch.response_for_.application_json + response_status = 200 + response_body_schema = patch.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py index a2425ffff32..a002c547aa5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py index ce4f2b224f4..1865ee31607 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_json + response_status = 200 + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py index 0e6938c9cba..a1b5801b829 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py index 80338803234..46d0211c1c9 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json - response_body_schema = post.response_for_.multipart_form_data + response_body_schema = post.response_for_200.multipart_form_data diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py index 8c7af5af3a6..2c10640ca3f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py index c19d32ff37a..add02d961a0 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py index 325427dc096..d3feb8d42c0 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json_charsetutf_8 + response_status = 200 + response_body_schema = post.response_for_200.application_json_charsetutf_8 diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py index 5f91d128c5e..fc11f501a40 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py index 9e9edcfd16a..73ff5c2859c 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py index 63cc363c029..fb4b561c379 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py index 0fe8cf1c81e..ec5e15b0f2c 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_json + response_status = 200 + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py index eee8472954f..61edf55e3d7 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py index adccaf13dc2..5f3372adbaa 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py index 496558597f1..82025e71da2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py index 71fb8d184ce..bd893ffa09b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py index c2811bf0c01..d6f747a875a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py index 4d38f5095df..bf80535a5a3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py index 2c86ab4ffcf..bc3c0f7c482 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py index 59f2828bcbf..c9c5cf0ee79 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py index 3cf470ccf35..dfcf189a92e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py index 81c2e9adbc9..4327652184f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py index 1faa6f46ab8..bcab7c96465 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py index c2fff5d6870..e358588324b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py index 536edb44724..66a05db6494 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_octet_stream + response_status = 200 + response_body_schema = post.response_for_200.application_octet_stream diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py index 9077f36ddac..16cdbb24541 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py index 75f5b101503..4320914a246 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py index 352a833b1d0..b8dca25fff5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py @@ -31,8 +31,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_json + response_status = default + response_body_schema = get.response_for_default.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py index 847424172c5..5016a08a9c3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py index a8ef13f34b9..903536c66d0 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 400 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py index acfb8a3e11b..b65853a8f41 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py index a21a243fe21..6d73f0f0e8e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py index 3882eeb8647..04b03559110 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 400 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py index da967b6cc93..b4025901400 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py index 2d3e496bcad..6c6c9e60ad3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 405 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py index 5a4ec835ae5..69e9fc1d8a5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_json + response_status = 200 + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py index 10a910e613e..ac1d420df14 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py @@ -32,8 +32,8 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_json + response_status = 200 + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py index 6ff1d10db32..8208e5e1984 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = post.response_for_.application_xml + response_status = 200 + response_body_schema = post.response_for_200.application_xml - response_body_schema = post.response_for_.application_json + response_body_schema = post.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py index 4356ede409b..3b229d2b1b5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 400 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py index b698003ff7f..7fca47ab679 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py index ebdac8acfbb..85fb63a93f4 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = default response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py index b5115c95c12..979e059ac5f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = default response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py index 45cd15d4e83..2a08ffde342 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = default response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py index 2c6f1765187..a37041acbae 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py index 3d70aad5faa..4816cef7b55 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = default response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py index ad5314849cc..4ea2cc0f52b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 200 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py index b36e83a8aab..1d247f5a4a3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py @@ -32,11 +32,11 @@ def setUp(self): def tearDown(self): pass - response_status = - response_body_schema = get.response_for_.application_xml + response_status = 200 + response_body_schema = get.response_for_200.application_xml - response_body_schema = get.response_for_.application_json + response_body_schema = get.response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py index ca306c26e66..6e94769a585 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = + response_status = 400 response_body = '' From 44a16f57b0cfbaa211eb2675ce05ed48c1b7721f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:41:15 -0800 Subject: [PATCH 11/44] Adds printing of response back in --- .../main/resources/python/endpoint_doc_example.handlebars | 6 ------ samples/openapi3/client/petstore/python/README.md | 1 + .../tags/another_fake_api/call_123_test_special_tags.md | 1 + .../petstore/python/docs/apis/tags/default_api/foo_get.md | 1 + .../fake_api/additional_properties_with_array_of_enums.md | 1 + .../petstore/python/docs/apis/tags/fake_api/array_model.md | 1 + .../python/docs/apis/tags/fake_api/array_of_enums.md | 1 + .../python/docs/apis/tags/fake_api/body_with_file_schema.md | 1 + .../docs/apis/tags/fake_api/body_with_query_params.md | 1 + .../petstore/python/docs/apis/tags/fake_api/boolean.md | 1 + .../python/docs/apis/tags/fake_api/case_sensitive_params.md | 1 + .../petstore/python/docs/apis/tags/fake_api/client_model.md | 1 + .../apis/tags/fake_api/composed_one_of_different_types.md | 1 + .../python/docs/apis/tags/fake_api/delete_coffee.md | 1 + .../python/docs/apis/tags/fake_api/endpoint_parameters.md | 1 + .../python/docs/apis/tags/fake_api/enum_parameters.md | 1 + .../python/docs/apis/tags/fake_api/fake_health_get.md | 1 + .../python/docs/apis/tags/fake_api/group_parameters.md | 2 ++ .../docs/apis/tags/fake_api/inline_additional_properties.md | 1 + .../python/docs/apis/tags/fake_api/inline_composition.md | 1 + .../python/docs/apis/tags/fake_api/json_form_data.md | 1 + .../petstore/python/docs/apis/tags/fake_api/json_patch.md | 1 + .../python/docs/apis/tags/fake_api/json_with_charset.md | 1 + .../petstore/python/docs/apis/tags/fake_api/mammal.md | 1 + .../docs/apis/tags/fake_api/number_with_validations.md | 1 + .../python/docs/apis/tags/fake_api/object_in_query.md | 1 + .../docs/apis/tags/fake_api/object_model_with_ref_props.md | 1 + .../python/docs/apis/tags/fake_api/parameter_collisions.md | 2 ++ .../tags/fake_api/query_param_with_json_content_type.md | 1 + .../apis/tags/fake_api/query_parameter_collection_format.md | 1 + .../python/docs/apis/tags/fake_api/ref_object_in_query.md | 1 + .../docs/apis/tags/fake_api/response_without_schema.md | 1 + .../petstore/python/docs/apis/tags/fake_api/string.md | 1 + .../petstore/python/docs/apis/tags/fake_api/string_enum.md | 1 + .../python/docs/apis/tags/fake_api/upload_download_file.md | 1 + .../petstore/python/docs/apis/tags/fake_api/upload_file.md | 1 + .../petstore/python/docs/apis/tags/fake_api/upload_files.md | 1 + .../docs/apis/tags/fake_classname_tags123_api/classname.md | 1 + .../petstore/python/docs/apis/tags/pet_api/add_pet.md | 1 + .../petstore/python/docs/apis/tags/pet_api/delete_pet.md | 2 ++ .../python/docs/apis/tags/pet_api/find_pets_by_status.md | 1 + .../python/docs/apis/tags/pet_api/find_pets_by_tags.md | 1 + .../petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md | 1 + .../petstore/python/docs/apis/tags/pet_api/update_pet.md | 1 + .../python/docs/apis/tags/pet_api/update_pet_with_form.md | 2 ++ .../apis/tags/pet_api/upload_file_with_required_file.md | 2 ++ .../petstore/python/docs/apis/tags/pet_api/upload_image.md | 2 ++ .../python/docs/apis/tags/store_api/delete_order.md | 1 + .../python/docs/apis/tags/store_api/get_inventory.md | 1 + .../python/docs/apis/tags/store_api/get_order_by_id.md | 1 + .../petstore/python/docs/apis/tags/store_api/place_order.md | 1 + .../petstore/python/docs/apis/tags/user_api/create_user.md | 1 + .../apis/tags/user_api/create_users_with_array_input.md | 1 + .../docs/apis/tags/user_api/create_users_with_list_input.md | 1 + .../petstore/python/docs/apis/tags/user_api/delete_user.md | 1 + .../python/docs/apis/tags/user_api/get_user_by_name.md | 1 + .../petstore/python/docs/apis/tags/user_api/login_user.md | 1 + .../petstore/python/docs/apis/tags/user_api/logout_user.md | 1 + .../petstore/python/docs/apis/tags/user_api/update_user.md | 1 + 59 files changed, 64 insertions(+), 6 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc_example.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc_example.handlebars index 0c49ff7cd76..7e81ed2df7f 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc_example.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc_example.handlebars @@ -93,9 +93,7 @@ with {{{packageName}}}.ApiClient(configuration) as api_client: {{/if}} {{/with}} ) -{{#if returnType}} pprint(api_response) -{{/if}} except {{{packageName}}}.ApiException as e: {{#if tag}} print("Exception when calling {{tag.getClassName}}->{{operationId}}: %s\n" % e) @@ -162,9 +160,7 @@ with {{{packageName}}}.ApiClient(configuration) as api_client: body=body, {{/if}} ) -{{#if returnType}} pprint(api_response) -{{/if}} except {{{packageName}}}.ApiException as e: {{#if tag}} print("Exception when calling {{tag.getClassName}}->{{operationId}}: %s\n" % e) @@ -185,9 +181,7 @@ with {{{packageName}}}.ApiClient(configuration) as api_client: # {{{summary}}} {{/if}} api_response = api_instance.{{{operationId}}}() -{{#if returnType}} pprint(api_response) -{{/if}} except {{{packageName}}}.ApiException as e: {{#if tag}} print("Exception when calling {{tag.getClassName}}->{{operationId}}: %s\n" % e) diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 6d07d5b32f3..2160db7a7f4 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -159,6 +159,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.call_123_test_special_tags( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling AnotherFakeApi->call_123_test_special_tags: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index 68f035f50f2..8c567ac00c9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.call_123_test_special_tags( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling AnotherFakeApi->call_123_test_special_tags: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 2ad377162b7..5dd3fcfa6e7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -23,6 +23,7 @@ with petstore_api.ApiClient(configuration) as api_client: # example, this endpoint has no required or optional parameters try: api_response = api_instance.foo_get() + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling DefaultApi->foo_get: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index 0d94b5aed58..d89a3f4f91d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.additional_properties_with_array_of_enums( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->additional_properties_with_array_of_enums: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index 795f15f41c9..4f74d4eba47 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -30,6 +30,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.array_model( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->array_model: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index 7856c375e2c..039e57c9571 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -30,6 +30,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.array_of_enums( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->array_of_enums: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index d08986d4e8d..c20076e21a1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -35,6 +35,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.body_with_file_schema( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->body_with_file_schema: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index dcd61df3f2c..bbec532d9a2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -44,6 +44,7 @@ with petstore_api.ApiClient(configuration) as api_client: query_params=query_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->body_with_query_params: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index acabb3e89ef..5a92c654e21 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.boolean( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->boolean: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index 30e7b8d6f10..f7aef8c0aee 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.case_sensitive_params( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->case_sensitive_params: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index c7f1bb979b1..3775091d04a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.client_model( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->client_model: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index c17541be897..d92548474c5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.composed_one_of_different_types( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->composed_one_of_different_types: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 566d77b4b5e..2f5ef22b935 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.delete_coffee( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->delete_coffee: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 5e8f67d8469..31ba9822116 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -56,6 +56,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.endpoint_parameters( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->endpoint_parameters: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 8d9ecce438b..5e245097b38 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -51,6 +51,7 @@ with petstore_api.ApiClient(configuration) as api_client: header_params=header_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->enum_parameters: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 6cb549615a2..937975a9332 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -25,6 +25,7 @@ with petstore_api.ApiClient(configuration) as api_client: try: # Health check endpoint api_response = api_instance.fake_health_get() + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->fake_health_get: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index 01ad8de4897..48895f75b71 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -47,6 +47,7 @@ with petstore_api.ApiClient(configuration) as api_client: query_params=query_params, header_params=header_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->group_parameters: %s\n" % e) @@ -67,6 +68,7 @@ with petstore_api.ApiClient(configuration) as api_client: query_params=query_params, header_params=header_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->group_parameters: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index 8f4b20dad64..8c3fe5ee5dd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -30,6 +30,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.inline_additional_properties( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->inline_additional_properties: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index 6284faf0102..5c223103a4e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -35,6 +35,7 @@ with petstore_api.ApiClient(configuration) as api_client: query_params=query_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->inline_composition: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 8f4cc9aed1f..3793b5d5862 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -31,6 +31,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.json_form_data( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->json_form_data: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 6b5c3b297d8..793cf9dd089 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.json_patch( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->json_patch: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index 7cbfd74230d..ec9aceb4708 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.json_with_charset( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->json_with_charset: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index e08c7770054..21d233c3ef1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.mammal( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->mammal: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index 954b2751a13..02d0e5d5468 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.number_with_validations( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->number_with_validations: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index 04bf81e35ce..b3ee911f441 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.object_in_query( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->object_in_query: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index d3941830ec1..ea4d9ccb833 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.object_model_with_ref_props( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->object_model_with_ref_props: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index 69c4b96f865..d96079a5815 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -43,6 +43,7 @@ with petstore_api.ApiClient(configuration) as api_client: header_params=header_params, cookie_params=cookie_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->parameter_collisions: %s\n" % e) @@ -84,6 +85,7 @@ with petstore_api.ApiClient(configuration) as api_client: cookie_params=cookie_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->parameter_collisions: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 29933336d96..7b62493995f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -30,6 +30,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.query_param_with_json_content_type( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->query_param_with_json_content_type: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index ae7a58d6cb7..9d82e00a77e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -45,6 +45,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.query_parameter_collection_format( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->query_parameter_collection_format: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index 2801cf3e3cf..cf37e9db5c9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.ref_object_in_query( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->ref_object_in_query: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index 3551eb6e224..fa34f49b10a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -25,6 +25,7 @@ with petstore_api.ApiClient(configuration) as api_client: try: # receives a response without schema api_response = api_instance.response_without_schema() + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->response_without_schema: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index 6b96a357aad..2b1bf47aac5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.string( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->string: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 4fb9a8548fc..0b385e7226f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.string_enum( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->string_enum: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index a37ce658de1..2e5c4aba8ea 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -28,6 +28,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_download_file( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_download_file: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 6d8a1476e67..766835e45ea 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -31,6 +31,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_file( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_file: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index 829a13c3d3c..b24ca3ac3f7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_files( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeApi->upload_files: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index 642bb24b1a2..c7a3e7ebc93 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -43,6 +43,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.classname( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling FakeClassnameTags123Api->classname: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index cea0ad3411c..bdb00df88e9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -118,6 +118,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.add_pet( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->add_pet: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index bc2e52dc6c6..7b99812c317 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -44,6 +44,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, header_params=header_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->delete_pet: %s\n" % e) @@ -60,6 +61,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, header_params=header_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->delete_pet: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index 44735a97221..10825c4ab01 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -105,6 +105,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.find_pets_by_status( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->find_pets_by_status: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index 5eb28f7712a..eb80bdd19ca 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -105,6 +105,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.find_pets_by_tags( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->find_pets_by_tags: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index f17aabf9df0..b1a353767ee 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -43,6 +43,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_pet_by_id( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->get_pet_by_id: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index 00faa3b5ffb..f2fa1e7f00b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -116,6 +116,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.update_pet( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->update_pet: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index f5e969baa73..465a0b45049 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -41,6 +41,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.update_pet_with_form( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->update_pet_with_form: %s\n" % e) @@ -58,6 +59,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->update_pet_with_form: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 9cace58746b..66fe5cb4b76 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -41,6 +41,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_file_with_required_file( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_file_with_required_file: %s\n" % e) @@ -58,6 +59,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_file_with_required_file: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index efc0b8661ad..b336d829ddd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -41,6 +41,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.upload_image( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_image: %s\n" % e) @@ -58,6 +59,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling PetApi->upload_image: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index 1c55ffabb57..faa9bea6f4d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.delete_order( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->delete_order: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index f90c05d175c..e4b9e1b7869 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -38,6 +38,7 @@ with petstore_api.ApiClient(configuration) as api_client: try: # Returns pet inventories by status api_response = api_instance.get_inventory() + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->get_inventory: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index 167c2671e06..b2df91d4c8f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_order_by_id( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->get_order_by_id: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 12c1d9c4fe3..67a715772e7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -35,6 +35,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.place_order( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling StoreApi->place_order: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index ffa3b94ba36..7dec88754db 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -44,6 +44,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.create_user( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->create_user: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index e8b267d9e04..7b15b2249de 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -44,6 +44,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.create_users_with_array_input( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->create_users_with_array_input: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index c9f1e81ab58..2566840ef66 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -44,6 +44,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.create_users_with_list_input( body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->create_users_with_list_input: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index b982fdf4061..6807fda22c5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -32,6 +32,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.delete_user( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->delete_user: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index a9576612659..0c7c977b146 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -30,6 +30,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.get_user_by_name( path_params=path_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->get_user_by_name: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index b3832d01615..9ee0ee07e1f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -31,6 +31,7 @@ with petstore_api.ApiClient(configuration) as api_client: api_response = api_instance.login_user( query_params=query_params, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->login_user: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index aa52e8bd682..82c966c54ff 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -25,6 +25,7 @@ with petstore_api.ApiClient(configuration) as api_client: try: # Logs out current logged in user session api_response = api_instance.logout_user() + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->logout_user: %s\n" % e) ``` diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index 999d9d49085..a1837489512 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -48,6 +48,7 @@ with petstore_api.ApiClient(configuration) as api_client: path_params=path_params, body=body, ) + pprint(api_response) except petstore_api.ApiException as e: print("Exception when calling UserApi->update_user: %s\n" % e) ``` From d060915f9871d397bd7c9382832348e7e1440299 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:50:12 -0800 Subject: [PATCH 12/44] nulls response maps initially --- .../codegen/CodegenOperation.java | 8 +++--- .../openapitools/codegen/DefaultCodegen.java | 26 ++++++++++++++++--- .../petstore_api/paths/foo/get/__init__.py | 15 +---------- .../petstore_api/paths/foo/get/__init__.pyi | 8 +----- .../petstore_api/paths/user/post/__init__.py | 15 +---------- .../petstore_api/paths/user/post/__init__.pyi | 8 +----- .../user_create_with_array/post/__init__.py | 15 +---------- .../user_create_with_array/post/__init__.pyi | 8 +----- .../user_create_with_list/post/__init__.py | 15 +---------- .../user_create_with_list/post/__init__.pyi | 8 +----- .../paths/user_logout/get/__init__.py | 15 +---------- .../paths/user_logout/get/__init__.pyi | 8 +----- 12 files changed, 36 insertions(+), 113 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java index 6b33a064c9e..10665739850 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java @@ -45,11 +45,11 @@ public class CodegenOperation { public List optionalParams = new ArrayList(); public List authMethods; public Map tags; - public TreeMap responses = new TreeMap<>(); - public TreeMap statusCodeResponses = new TreeMap<>(); - public TreeMap wildcardCodeResponses = new TreeMap<>(); + public TreeMap responses = null; + public TreeMap statusCodeResponses = null; + public TreeMap wildcardCodeResponses = null; - public TreeMap nonDefaultResponses = new TreeMap<>(); + public TreeMap nonDefaultResponses = null; public CodegenResponse defaultResponse = null; public List callbacks = new ArrayList<>(); public Set imports = new HashSet(); diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 7d5bd0362ed..0b79752bc5c 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4255,6 +4255,7 @@ public CodegenOperation fromOperation(String path, addConsumesInfo(operation, op); if (operation.getResponses() != null && !operation.getResponses().isEmpty()) { + op.responses = new TreeMap<>(); ApiResponse methodResponse = findMethodResponse(operation.getResponses()); for (Map.Entry operationGetResponsesEntry : operation.getResponses().entrySet()) { String key = operationGetResponsesEntry.getKey(); @@ -4267,21 +4268,38 @@ public CodegenOperation fromOperation(String path, if ("default".equals(key)) { op.defaultResponse = r; } else { + if (op.nonDefaultResponses == null) { + op.nonDefaultResponses = new TreeMap<>(); + } op.nonDefaultResponses.put(key, r); if (key.endsWith("XX") && key.length() == 3) { + if (op.wildcardCodeResponses == null) { + op.wildcardCodeResponses = new TreeMap<>(); + } String firstNumber = key.substring(0, 1); op.wildcardCodeResponses.put(Integer.parseInt(firstNumber), r); } else { + if (op.statusCodeResponses == null) { + op.statusCodeResponses = new TreeMap<>(); + } op.statusCodeResponses.put(Integer.parseInt(key), r); } } } // sort them - op.responses = new TreeMap<>(op.responses); - op.nonDefaultResponses = new TreeMap<>(op.nonDefaultResponses); - op.statusCodeResponses = new TreeMap<>(op.statusCodeResponses); - op.wildcardCodeResponses = new TreeMap<>(op.wildcardCodeResponses); + if (op.responses != null) { + op.responses = new TreeMap<>(op.responses); + } + if (op.nonDefaultResponses != null) { + op.nonDefaultResponses = new TreeMap<>(op.nonDefaultResponses); + } + if (op.statusCodeResponses != null) { + op.statusCodeResponses = new TreeMap<>(op.statusCodeResponses); + } + if (op.wildcardCodeResponses != null) { + op.wildcardCodeResponses = new TreeMap<>(op.wildcardCodeResponses); + } if (methodResponse != null) { handleMethodResponse(operation, schemas, op, methodResponse, importMapping); 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 652c3a01d76..4d7c98f0c49 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 @@ -31,13 +31,6 @@ default_response = response_for_default.response -__StatusCodeToResponse = typing_extensions.TypedDict( - '__StatusCodeToResponse', - { - } -) -_status_code_to_response = __StatusCodeToResponse({ -}) _all_accept_content_types = ( 'application/json', ) @@ -107,13 +100,7 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 434ffc978e7..e0d5b00c6fe 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 @@ -96,13 +96,7 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 d29aae2457d..7bfbc4810f1 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 @@ -32,13 +32,6 @@ default_response = response_for_default.response -__StatusCodeToResponse = typing_extensions.TypedDict( - '__StatusCodeToResponse', - { - } -) -_status_code_to_response = __StatusCodeToResponse({ -}) class BaseApi(api_client.Api): @@ -133,13 +126,7 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 7b0a15d89c8..64f750c839e 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 @@ -122,13 +122,7 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 2c35425adf2..a0d08aedfd4 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 @@ -32,13 +32,6 @@ default_response = response_for_default.response -__StatusCodeToResponse = typing_extensions.TypedDict( - '__StatusCodeToResponse', - { - } -) -_status_code_to_response = __StatusCodeToResponse({ -}) class BaseApi(api_client.Api): @@ -133,13 +126,7 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 6ee7b27472b..58b9d6effec 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 @@ -122,13 +122,7 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 87ad3adc159..009d8a090ef 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 @@ -32,13 +32,6 @@ default_response = response_for_default.response -__StatusCodeToResponse = typing_extensions.TypedDict( - '__StatusCodeToResponse', - { - } -) -_status_code_to_response = __StatusCodeToResponse({ -}) class BaseApi(api_client.Api): @@ -133,13 +126,7 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 2cd946c3464..cb9133eecb2 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 @@ -122,13 +122,7 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 0190b08e3c1..461b995438d 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 @@ -30,13 +30,6 @@ default_response = response_for_default.response -__StatusCodeToResponse = typing_extensions.TypedDict( - '__StatusCodeToResponse', - { - } -) -_status_code_to_response = __StatusCodeToResponse({ -}) class BaseApi(api_client.Api): @@ -94,13 +87,7 @@ class instances if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( 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 a45aff1eb92..44ff5e780b4 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 @@ -83,13 +83,7 @@ class BaseApi(api_client.Api): if skip_deserialization: api_response = api_client.ApiResponseWithoutDeserialization(response=response) else: - status = str(response.status) - if status in _status_code_to_response: - status: typing_extensions.Literal[ - ] - api_response = _status_code_to_response[status].deserialize(response, self.api_client.configuration) - else: - api_response = default_response.deserialize(response, self.api_client.configuration) + api_response = default_response.deserialize(response, self.api_client.configuration) if not 200 <= response.status <= 299: raise exceptions.ApiException( From a26872e2d838784e34e1ceecd6f0ea3f2675a541 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 11:58:02 -0800 Subject: [PATCH 13/44] Fixes response body type hints in docs --- .../main/resources/python/endpoint_doc.handlebars | 2 +- .../python/endpoint_response_type_hint.handlebars | 8 ++++---- .../another_fake_api/call_123_test_special_tags.md | 2 +- .../python/docs/apis/tags/default_api/foo_get.md | 2 +- .../additional_properties_with_array_of_enums.md | 2 +- .../python/docs/apis/tags/fake_api/array_model.md | 2 +- .../python/docs/apis/tags/fake_api/array_of_enums.md | 2 +- .../python/docs/apis/tags/fake_api/boolean.md | 2 +- .../python/docs/apis/tags/fake_api/client_model.md | 2 +- .../tags/fake_api/composed_one_of_different_types.md | 2 +- .../docs/apis/tags/fake_api/enum_parameters.md | 2 +- .../docs/apis/tags/fake_api/fake_health_get.md | 2 +- .../docs/apis/tags/fake_api/inline_composition.md | 2 +- .../docs/apis/tags/fake_api/json_with_charset.md | 2 +- .../python/docs/apis/tags/fake_api/mammal.md | 2 +- .../apis/tags/fake_api/number_with_validations.md | 2 +- .../tags/fake_api/object_model_with_ref_props.md | 2 +- .../docs/apis/tags/fake_api/parameter_collisions.md | 2 +- .../fake_api/query_param_with_json_content_type.md | 2 +- .../python/docs/apis/tags/fake_api/string.md | 2 +- .../python/docs/apis/tags/fake_api/string_enum.md | 2 +- .../docs/apis/tags/fake_api/upload_download_file.md | 2 +- .../python/docs/apis/tags/fake_api/upload_file.md | 2 +- .../python/docs/apis/tags/fake_api/upload_files.md | 2 +- .../tags/fake_classname_tags123_api/classname.md | 2 +- .../docs/apis/tags/pet_api/find_pets_by_status.md | 2 +- .../docs/apis/tags/pet_api/find_pets_by_tags.md | 2 +- .../python/docs/apis/tags/pet_api/get_pet_by_id.md | 2 +- .../tags/pet_api/upload_file_with_required_file.md | 2 +- .../python/docs/apis/tags/pet_api/upload_image.md | 2 +- .../python/docs/apis/tags/store_api/get_inventory.md | 2 +- .../docs/apis/tags/store_api/get_order_by_id.md | 2 +- .../python/docs/apis/tags/store_api/place_order.md | 2 +- .../docs/apis/tags/user_api/get_user_by_name.md | 2 +- .../python/docs/apis/tags/user_api/login_user.md | 2 +- .../paths/fake_delete_coffee_id/delete/__init__.py | 12 ++++++------ .../paths/fake_delete_coffee_id/delete/__init__.pyi | 12 ++++++------ 37 files changed, 50 insertions(+), 50 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 651d395148d..b0004371a65 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -169,7 +169,7 @@ default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | +body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers](#response_for_{{@key}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | {{#each content}} {{#with this.schema}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars index 7c2983c9ac7..5cc4e683b35 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars @@ -1,6 +1,3 @@ -{{#if defaultResponse}} -response_for_default.ApiResponse, -{{/if}} {{#each statusCodeResponses}} {{#gte @key 200}} {{#lte @key 299}} @@ -12,4 +9,7 @@ response_for_{{@key}}.ApiResponse, {{#eq @key 2}} response_for_{{@key}}xx.ApiResponse, {{/eq}} -{{/each}} \ No newline at end of file +{{/each}} +{{#if defaultResponse}} +response_for_default.ApiResponse, +{{/if}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index 8c567ac00c9..ce58f892ce3 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -58,7 +58,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 5dd3fcfa6e7..3ecf33c7630 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -41,7 +41,7 @@ default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_default.application_json](#response_for_default.application_json), ] | | headers | Unset | headers were not defined | # response_for_default.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index d89a3f4f91d..ef280839dd1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -65,7 +65,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index 4f74d4eba47..cebe7b41e4f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -63,7 +63,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index 039e57c9571..dabd1f22bd5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -63,7 +63,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index 5a92c654e21..25c8904d430 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -61,7 +61,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index 3775091d04a..49496cf533e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -58,7 +58,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index d92548474c5..8914a28cdbf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -61,7 +61,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 5e245097b38..11193adb1c6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -187,7 +187,7 @@ headers | Unset | headers were not defined | Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_404.application_json](#response_for_404.application_json), ] | | headers | Unset | headers were not defined | # response_for_404.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 937975a9332..3963f59b05c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -43,7 +43,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index 5c223103a4e..cf225ef3a9b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -177,7 +177,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), [response_for_multipart/form-data.multipart_form_data](#response_for_multipart/form-data.multipart_form_data), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), [response_for_200.multipart_form_data](#response_for_200.multipart_form_data), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index ec9aceb4708..bfb35fcdf05 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -62,7 +62,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json; charset=utf-8.application_json_charsetutf_8](#response_for_application/json; charset=utf-8.application_json_charsetutf_8), ] | | +body | typing.Union[[response_for_200.application_json_charsetutf_8](#response_for_200.application_json_charsetutf_8), ] | | headers | Unset | headers were not defined | # response_for_200.application_json_charsetutf_8 diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index 21d233c3ef1..304f7d1b21d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -65,7 +65,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index 02d0e5d5468..e70d26ead41 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -61,7 +61,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index ea4d9ccb833..3d0bd561abf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -65,7 +65,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index d96079a5815..99c12cfd5d9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -300,7 +300,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 7b62493995f..88286f51597 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -63,7 +63,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index 2b1bf47aac5..eb94880ef47 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -61,7 +61,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 0b385e7226f..05c8997cd17 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -61,7 +61,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index 2e5c4aba8ea..26d6ca25332 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -64,7 +64,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/octet-stream.application_octet_stream](#response_for_application/octet-stream.application_octet_stream), ] | | +body | typing.Union[[response_for_200.application_octet_stream](#response_for_200.application_octet_stream), ] | | headers | Unset | headers were not defined | # response_for_200.application_octet_stream diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 766835e45ea..30e1cc9f866 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -72,7 +72,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index b24ca3ac3f7..664bfecb670 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -84,7 +84,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index c7a3e7ebc93..8e6dcee6920 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -69,7 +69,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index 10825c4ab01..77341fb4f51 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -151,7 +151,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index eb80bdd19ca..71101d927cc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -151,7 +151,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index b1a353767ee..67ab183ab96 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -84,7 +84,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 66fe5cb4b76..8ae9312598f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -115,7 +115,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index b336d829ddd..3f8db21a9f8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -115,7 +115,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index e4b9e1b7869..c309f27a0a7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -56,7 +56,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_json diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index b2df91d4c8f..27ac69181cf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -73,7 +73,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 67a715772e7..28f898db814 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -69,7 +69,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index 0c7c977b146..e3ea023af0f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -71,7 +71,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | Unset | headers were not defined | # response_for_200.application_xml diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index 9ee0ee07e1f..476d4e9f5b6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -80,7 +80,7 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_application/xml.application_xml](#response_for_application/xml.application_xml), [response_for_application/json.application_json](#response_for_application/json.application_json), ] | | +body | typing.Union[[response_for_200.application_xml](#response_for_200.application_xml), [response_for_200.application_json](#response_for_200.application_json), ] | | headers | [response_for_200.Headers](#response_for_200.Headers) | | # response_for_200.application_xml 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 93f82b18abf..e30d3277f93 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 @@ -75,8 +75,8 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -96,8 +96,8 @@ def _delete_coffee_oapg( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -169,8 +169,8 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -190,8 +190,8 @@ def delete_coffee( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -221,8 +221,8 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -242,8 +242,8 @@ def delete( timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... 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 bdcaf7c1203..ef32609d7c6 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 @@ -62,8 +62,8 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -83,8 +83,8 @@ class BaseApi(api_client.Api): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -156,8 +156,8 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -177,8 +177,8 @@ class DeleteCoffee(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... @@ -208,8 +208,8 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: typing_extensions.Literal[False] = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, ]: ... @typing.overload @@ -229,8 +229,8 @@ class ApiFordelete(BaseApi): timeout: typing.Optional[typing.Union[int, typing.Tuple]] = None, skip_deserialization: bool = ..., ) -> typing.Union[ - response_for_default.ApiResponse, response_for_200.ApiResponse, + response_for_default.ApiResponse, api_client.ApiResponseWithoutDeserialization, ]: ... From a85b5217e54158eb2d36371c08fb3c1beccd6388 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 12:10:00 -0800 Subject: [PATCH 14/44] Fixes endpoint docs --- .../src/main/resources/python/endpoint_doc.handlebars | 4 ++-- .../petstore/python/docs/apis/tags/user_api/login_user.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index b0004371a65..96c94752094 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -191,7 +191,7 @@ Key | Accessed Type | Description | Notes {{#each getContent}} {{#with this}} {{#with schema}} -{{../baseName}} | [response_for_{{../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} +{{../baseName}} | [response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} {{/with}} {{/with}} {{/each}} @@ -208,7 +208,7 @@ Key | Accessed Type | Description | Notes {{#with this}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/with}} {{/each}} diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index 476d4e9f5b6..a553175775c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -100,10 +100,10 @@ str, | str, | | Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- -X-Rate-Limit | [response_for_application/json.parameter_x_rate_limit.application_json](#response_for_application/json.parameter_x_rate_limit.application_json) | | optional +X-Rate-Limit | [response_for_200.parameter_x_rate_limit.application_json](#response_for_200.parameter_x_rate_limit.application_json) | | optional X-Expires-After | [response_for_1.parameter_x_expires_after.schema](#response_for_1.parameter_x_expires_after.schema) | | optional -# response_for_.parameter_x_rate_limit..application_json +# response_for_200.parameter_x_rate_limit.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes From b2ea2933fa72c692653501b3c8ebe259e7e3697f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 12:13:50 -0800 Subject: [PATCH 15/44] Fixes response code reference in endpoint docs --- .../src/main/resources/python/endpoint_doc.handlebars | 2 +- .../petstore/python/docs/apis/tags/user_api/login_user.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 96c94752094..6bad40d0124 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -185,7 +185,7 @@ Key | Accessed Type | Description | Notes {{#each responseHeaders}} {{#if schema}} {{#with schema}} -{{../baseName}} | [response_for_{{../@key}}.{{../paramName}}.schema](#response_for_{{../@key}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} +{{../baseName}} | [response_for_{{../../@key}}.{{../paramName}}.schema](#response_for_{{../../@key}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} {{/with}} {{else}} {{#each getContent}} diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index a553175775c..d696d9fb506 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -101,7 +101,7 @@ str, | str, | | Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- X-Rate-Limit | [response_for_200.parameter_x_rate_limit.application_json](#response_for_200.parameter_x_rate_limit.application_json) | | optional -X-Expires-After | [response_for_1.parameter_x_expires_after.schema](#response_for_1.parameter_x_expires_after.schema) | | optional +X-Expires-After | [response_for_200.parameter_x_expires_after.schema](#response_for_200.parameter_x_expires_after.schema) | | optional # response_for_200.parameter_x_rate_limit.application_json From 310b429eb12ece3bb4672226a1f10a0e33eddb45 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 12:39:32 -0800 Subject: [PATCH 16/44] Fixes endpoint test http code, fixes some java tests --- .../src/main/resources/python/README_common.handlebars | 8 ++++++++ .../src/main/resources/python/endpoint_test.handlebars | 2 +- .../org/openapitools/codegen/DefaultCodegenTest.java | 10 ++-------- .../org/openapitools/codegen/DefaultGeneratorTest.java | 2 +- .../codegen/java/JavaClientCodegenTest.java | 8 ++++---- .../python/test/test_paths/test_foo/test_get.py | 2 +- .../python/test/test_paths/test_user/test_post.py | 2 +- .../test_user_create_with_array/test_post.py | 2 +- .../test_paths/test_user_create_with_list/test_post.py | 2 +- .../test/test_paths/test_user_logout/test_get.py | 2 +- 10 files changed, 21 insertions(+), 19 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars index 59fd200fe1c..031bc65589a 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars @@ -39,6 +39,14 @@ HTTP request | Method | Description - {{#with this}}[{{refModule}}](docs/components/request_bodies/{{refModule}}.md){{/with}} {{/each}} {{/if}} +{{#if responses}} + +## Documentation For Component RequestBodies + +{{#each responses}} +- {{#with this}}[{{refModule}}](docs/components/request_bodies/{{refModule}}.md){{/with}} +{{/each}} +{{/if}} ## Documentation For Authorization diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars index 4f3ee608eb9..aa2a3836f22 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars @@ -33,7 +33,7 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#each responses}} {{#if @first}} - response_status = {{@key}} + response_status = {{#eq @key "default"}}0{{else}}{{@key}}{{/eq}} {{#if content}} {{#each content}} {{#if schema}} diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java index df9e3cf770a..c50c7b091eb 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java @@ -1699,7 +1699,7 @@ public void testResponseWithNoSchemaInHeaders() { final DefaultCodegen codegen = new DefaultCodegen(); codegen.setOpenAPI(openAPI); - CodegenResponse cr = codegen.fromResponse("2XX", response2XX, ""); + CodegenResponse cr = codegen.fromResponse(response2XX, ""); Assert.assertNotNull(cr); Assert.assertTrue(cr.hasHeaders); } @@ -3508,7 +3508,7 @@ public void testHasRequiredInResponses() { )); HashSet modelNamesWithRequired = new HashSet(Arrays.asList( )); - for (CodegenResponse cr : co.responses) { + for (CodegenResponse cr : co.responses.values()) { boolean hasRequired = cr.getContent().get("application/json").getSchema().getHasRequired(); if (modelNamesWithoutRequired.contains(cr.message)) { assertFalse(hasRequired); @@ -3967,10 +3967,8 @@ public void testResponses() { co = codegen.fromOperation(path, "GET", operation, null); //assertTrue(co.hasErrorResponseObject); cr = co.responses.get(0); - assertTrue(cr.is2xx); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); cr = co.responses.get(3); - assertTrue(cr.is5xx); assertFalse(cr.getContent().get("application/application").getSchema().isPrimitiveType); path = "/pet"; @@ -3980,13 +3978,10 @@ public void testResponses() { // 200 response cr = co.responses.get(0); - assertTrue(cr.is2xx); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); // 400 response cr = co.responses.get(1); - assertTrue(cr.is4xx); - assertEquals(cr.code, "400"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); path = "/pet/findByTags"; @@ -3994,7 +3989,6 @@ public void testResponses() { co = codegen.fromOperation(path, "GET", operation, null); assertFalse(co.hasErrorResponseObject); cr = co.responses.get(0); - assertTrue(cr.is2xx); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); } diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java index e7a2c1371c7..4ba9ffcc969 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultGeneratorTest.java @@ -429,7 +429,7 @@ public void testRefModelValidationProperties() { // Validate when converting to response ApiResponse response = operation.getResponses().get("200"); - CodegenResponse codegenResponse = config.fromResponse("200", response, null); + CodegenResponse codegenResponse = config.fromResponse(response, null); Assert.assertEquals(codegenResponse.getContent().get("*/*").getSchema().getPattern(), escapedPattern); } diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java index d26cb74a5ea..c567f4ee837 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaClientCodegenTest.java @@ -488,11 +488,11 @@ public void testReferencedHeader() { codegen.setOpenAPI(openAPI); ApiResponse ok_200 = openAPI.getComponents().getResponses().get("OK_200"); - CodegenResponse response = codegen.fromResponse("200", ok_200, ""); + CodegenResponse response = codegen.fromResponse(ok_200, ""); - Assert.assertEquals(response.headers.size(), 1); - CodegenProperty header = response.headers.get(0); - Assert.assertEquals(header.dataType, "UUID"); + Assert.assertEquals(response.getResponseHeaders().size(), 1); + CodegenParameter header = response.getResponseHeaders().get(0); + Assert.assertEquals(header.getSchema().getFormat(), "uuid"); Assert.assertEquals(header.baseName, "Request"); } diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py index b8dca25fff5..03a8a8f6ffd 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py @@ -31,7 +31,7 @@ def setUp(self): def tearDown(self): pass - response_status = default + response_status = 0 response_body_schema = get.response_for_default.application_json diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py index 85fb63a93f4..0b494f2ba22 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = default + response_status = 0 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py index 979e059ac5f..a6ed9b4d735 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = default + response_status = 0 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py index 2a08ffde342..173e669239a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = default + response_status = 0 response_body = '' diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py index 4816cef7b55..9329c79fb23 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py @@ -32,7 +32,7 @@ def setUp(self): def tearDown(self): pass - response_status = default + response_status = 0 response_body = '' From 58a0ac439d2af2e034f0caa475fde4705d143208 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 13:03:31 -0800 Subject: [PATCH 17/44] Adds component responses to readme --- .../openapitools/codegen/DefaultCodegen.java | 38 ++++++++++++++----- .../resources/python/README_common.handlebars | 2 +- .../openapi3/client/petstore/python/README.md | 4 ++ 3 files changed, 33 insertions(+), 11 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 0b79752bc5c..c3f714d6f88 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4479,21 +4479,36 @@ public boolean isParameterNameUnique(CodegenParameter p, List * @return Codegen Response object */ public CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath) { - CodegenResponse r = CodegenModelFactory.newInstance(CodegenModelType.RESPONSE); + String responseRef = response.get$ref(); + ApiResponse usedResponse = response; + String usedSourceJsonPath = sourceJsonPath; + if (responseRef != null) { + usedResponse = ModelUtils.getReferencedApiResponse(this.openAPI, response); + usedSourceJsonPath = responseRef; + } - r.message = escapeText(response.getDescription()); + if (usedResponse == null) { + LOGGER.error("response in fromResponse cannot be null!"); + throw new RuntimeException("response in fromResponse cannot be null!"); + } + + CodegenResponse r = CodegenModelFactory.newInstance(CodegenModelType.RESPONSE); + if (responseRef != null) { + r.setRef(responseRef); + r.setRefModule(toRefModule(responseRef, "responses")); + } + r.message = escapeText(usedResponse.getDescription()); // TODO need to revise and test examples in responses // ApiResponse does not support examples at the moment //r.examples = toExamples(response.getExamples()); - r.jsonSchema = Json.pretty(response); - if (response.getExtensions() != null && !response.getExtensions().isEmpty()) { - r.vendorExtensions.putAll(response.getExtensions()); + r.jsonSchema = Json.pretty(usedResponse); + if (usedResponse.getExtensions() != null && !usedResponse.getExtensions().isEmpty()) { + r.vendorExtensions.putAll(usedResponse.getExtensions()); } - String usedSourceJsonPath = sourceJsonPath + "/"; - Map headers = response.getHeaders(); + Map headers = usedResponse.getHeaders(); if (headers != null) { - if (!response.getHeaders().isEmpty()) { + if (!usedResponse.getHeaders().isEmpty()) { r.hasHeaders = true; } List responseHeaders = new ArrayList<>(); @@ -6518,8 +6533,11 @@ private String toRefModule(String ref, String expectedComponentType) { if (!refPieces[2].equals(expectedComponentType)) { throw new RuntimeException("Incorrect component type in ref, expected "+expectedComponentType+" and saw "+refPieces[2]); } - if (expectedComponentType.equals("requestBodies")) { - return toRequestBodyFileName(refPieces[3]); + switch (expectedComponentType) { + case "requestBodies": + return toRequestBodyFileName(refPieces[3]); + case "responses": + return toResponseFilename(refPieces[3]); } return null; } diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars index 031bc65589a..1e4c365dc76 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars @@ -41,7 +41,7 @@ HTTP request | Method | Description {{/if}} {{#if responses}} -## Documentation For Component RequestBodies +## Documentation For Component Responses {{#each responses}} - {{#with this}}[{{refModule}}](docs/components/request_bodies/{{refModule}}.md){{/with}} diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 2160db7a7f4..362637a1cb2 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -362,6 +362,10 @@ HTTP request | Method | Description - [pet_request_body](docs/components/request_bodies/pet_request_body.md) - [user_array_request_body](docs/components/request_bodies/user_array_request_body.md) +## Documentation For Component Responses + +- [success_description_only_response](docs/components/request_bodies/success_description_only_response.md) + ## Documentation For Authorization From 0acaf995865f94ac83d1775d494aa52b0bd5d956 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 15:17:13 -0800 Subject: [PATCH 18/44] Removes unused java code --- .../openapitools/codegen/DefaultCodegen.java | 74 ------------------- 1 file changed, 74 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index c3f714d6f88..2f78e62771f 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4081,75 +4081,6 @@ protected void setNonArrayMapProperty(CodegenProperty property, String type) { } } - /** - * Override with any special handling of response codes - * - * @param responses OAS Operation's responses - * @return default method response or null if not found - */ - protected ApiResponse findMethodResponse(ApiResponses responses) { - String code = null; - for (String responseCode : responses.keySet()) { - if (responseCode.startsWith("2") || responseCode.equals("default")) { - if (code == null || code.compareTo(responseCode) > 0) { - code = responseCode; - } - } - } - if (code == null) { - return null; - } - return responses.get(code); - } - - /** - * Set op's returnBaseType, returnType, examples etc. - * - * @param operation endpoint Operation - * @param schemas a map of the schemas in the openapi spec - * @param op endpoint CodegenOperation - * @param methodResponse the default ApiResponse for the endpoint - */ - protected void handleMethodResponse(Operation operation, - Map schemas, - CodegenOperation op, - ApiResponse methodResponse) { - handleMethodResponse(operation, schemas, op, methodResponse, Collections.emptyMap()); - } - - /** - * Set op's returnBaseType, returnType, examples etc. - * - * @param operation endpoint Operation - * @param schemas a map of the schemas in the openapi spec - * @param op endpoint CodegenOperation - * @param methodResponse the default ApiResponse for the endpoint - * @param schemaMappings mappings of external types to be omitted by unaliasing - */ - protected void handleMethodResponse(Operation operation, - Map schemas, - CodegenOperation op, - ApiResponse methodResponse, - Map schemaMappings) { - Schema responseSchema = unaliasSchema(ModelUtils.getSchemaFromResponse(methodResponse)); - - if (responseSchema != null) { - CodegenProperty cm = fromProperty("response", responseSchema, false, false, null); - - // check skipOperationExample, which can be set to true to avoid out of memory errors for large spec - if (!isSkipOperationExample()) { - // generate examples - String exampleStatusCode = "200"; - for (String key : operation.getResponses().keySet()) { - if (operation.getResponses().get(key) == methodResponse && !key.equals("default")) { - exampleStatusCode = key; - } - } - op.examples = new ExampleGenerator(schemas, this.openAPI).generateFromResponseSchema(exampleStatusCode, responseSchema, getProducesInfo(this.openAPI, operation)); - } - } - } - public String getBodyParameterName(CodegenOperation co) { String bodyParameterName = "body"; if (co != null && co.vendorExtensions != null && co.vendorExtensions.containsKey("x-codegen-request-body-name")) { @@ -4256,7 +4187,6 @@ public CodegenOperation fromOperation(String path, if (operation.getResponses() != null && !operation.getResponses().isEmpty()) { op.responses = new TreeMap<>(); - ApiResponse methodResponse = findMethodResponse(operation.getResponses()); for (Map.Entry operationGetResponsesEntry : operation.getResponses().entrySet()) { String key = operationGetResponsesEntry.getKey(); ApiResponse response = operationGetResponsesEntry.getValue(); @@ -4300,10 +4230,6 @@ public CodegenOperation fromOperation(String path, if (op.wildcardCodeResponses != null) { op.wildcardCodeResponses = new TreeMap<>(op.wildcardCodeResponses); } - - if (methodResponse != null) { - handleMethodResponse(operation, schemas, op, methodResponse, importMapping); - } } if (operation.getCallbacks() != null && !operation.getCallbacks().isEmpty()) { From 234b53d3ae191a98e9794c4ab7bcc05316a74b92 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 17:00:50 -0800 Subject: [PATCH 19/44] Uses refed responses if they exist --- .../openapitools/codegen/config/CodegenConfigurator.java | 5 ++++- .../src/main/resources/python/endpoint.handlebars | 9 +++++++++ .../python/petstore_api/paths/fake/delete/__init__.py | 2 +- .../python/petstore_api/paths/fake/delete/__init__.pyi | 2 +- .../python/petstore_api/paths/fake/get/__init__.py | 2 +- .../python/petstore_api/paths/fake/get/__init__.pyi | 2 +- .../python/petstore_api/paths/fake/post/__init__.py | 2 +- .../python/petstore_api/paths/fake/post/__init__.pyi | 2 +- .../paths/fake_body_with_file_schema/put/__init__.py | 2 +- .../paths/fake_body_with_file_schema/put/__init__.pyi | 2 +- .../paths/fake_body_with_query_params/put/__init__.py | 2 +- .../paths/fake_body_with_query_params/put/__init__.pyi | 2 +- .../paths/fake_case_sensitive_params/put/__init__.py | 2 +- .../paths/fake_case_sensitive_params/put/__init__.pyi | 2 +- .../paths/fake_delete_coffee_id/delete/__init__.py | 2 +- .../paths/fake_delete_coffee_id/delete/__init__.pyi | 2 +- .../fake_inline_additional_properties/post/__init__.py | 2 +- .../fake_inline_additional_properties/post/__init__.pyi | 2 +- .../paths/fake_json_form_data/get/__init__.py | 2 +- .../paths/fake_json_form_data/get/__init__.pyi | 2 +- .../petstore_api/paths/fake_json_patch/patch/__init__.py | 2 +- .../paths/fake_json_patch/patch/__init__.pyi | 2 +- .../petstore_api/paths/fake_obj_in_query/get/__init__.py | 2 +- .../paths/fake_obj_in_query/get/__init__.pyi | 2 +- .../paths/fake_ref_obj_in_query/get/__init__.py | 2 +- .../paths/fake_ref_obj_in_query/get/__init__.pyi | 2 +- .../paths/fake_test_query_paramters/put/__init__.py | 2 +- .../paths/fake_test_query_paramters/put/__init__.pyi | 2 +- .../python/petstore_api/paths/pet/post/__init__.py | 2 +- .../python/petstore_api/paths/pet/post/__init__.pyi | 2 +- .../petstore_api/paths/user_logout/get/__init__.py | 2 +- .../petstore_api/paths/user_logout/get/__init__.pyi | 2 +- .../petstore_api/paths/user_username/delete/__init__.py | 2 +- .../petstore_api/paths/user_username/delete/__init__.pyi | 2 +- 34 files changed, 45 insertions(+), 33 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/config/CodegenConfigurator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/config/CodegenConfigurator.java index 3d2d9c3aaac..8440fec76e0 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/config/CodegenConfigurator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/config/CodegenConfigurator.java @@ -569,7 +569,10 @@ public Context toContext() { // TODO: Support custom spec loader implementations (https://github.com/OpenAPITools/openapi-generator/issues/844) final List authorizationValues = AuthParser.parse(this.auth); ParseOptions options = new ParseOptions(); - options.setResolve(true); + // if setResolve is True then responses will not keep their refs + // https://github.com/swagger-api/swagger-parser/issues/1860 + // TODO parse with setResolve false and true, then fix the true results to keep response refs + options.setResolve(false); SwaggerParseResult result = new OpenAPIParser().readLocation(inputSpec, authorizationValues, options); // TODO: Move custom validations to a separate type as part of a "Workflow" 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 921b1cbe746..57c4ce65f17 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 @@ -20,12 +20,21 @@ from {{packageName}} import api_client, exceptions from {{packageName}}.components.request_bodies import {{refModule}} as request_body {{/if}} {{/with}} +{{#each responses}} +{{#with this}} +{{#if refModule}} +from {{packageName}}.components.responses import {{refModule}} as response_for_{{@key}} +{{/if}} +{{/with}} +{{/each}} {{#unless isStub}} from .. import path {{/unless}} {{#each responses}} +{{#unless refModule}} from . import response_for_{{@key}} +{{/unless}} {{/each}} {{#with bodyParam}} {{#unless refModule}} 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 2bc645918c1..5e502249cec 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 8f65fda118e..529a714e8a6 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 56441b16dce..f6fb82fefc5 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import response_for_404 from . import request_body from . import parameter_0 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 3d06d0c2b0e..15b2d934fe9 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import response_for_404 from . import request_body from . import parameter_0 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 7467205fb38..2ffe2976ff4 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import response_for_404 from . import request_body 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 6113c740236..e49707be145 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import response_for_404 from . import request_body 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 47ba158d235..e5a853c5193 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body 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 fd10d5c8008..2d4198eafdb 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import request_body 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 10b98c144f0..d6b21c51ae1 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body from . import parameter_0 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 36ed9f791c6..692d553874f 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import request_body from . import parameter_0 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 cb1e5e66977..3e423eadb48 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 98d8c384fa5..5ca8f1addd6 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 e30d3277f93..c78304a6e34 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import response_for_default from . import parameter_0 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 ef32609d7c6..9ba7325d346 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import response_for_default from . import parameter_0 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 18da43de164..69defbc4919 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body 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 62740402de7..4009eeb215c 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import request_body 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 c7b127f4179..235d17bb2bd 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body 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 5eac75739fa..76ffbd2d73a 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import request_body 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 0e2d243f2bf..e6007cd1a32 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body 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 9bf8cbf8572..7d3fe2e427b 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import request_body 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 a701cca93fc..0d8c61ae53b 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import parameter_0 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 11aac86023d..94b17e27bf6 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import parameter_0 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 a8d0a686ee7..3da9bef71dc 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import parameter_0 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 1257270e5e6..3ae860d45bc 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import parameter_0 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 fc7242de04a..8a682c601d2 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 05cffad0fb7..ed02932a787 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import parameter_0 from . import parameter_1 from . import parameter_2 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 451832591e2..f8820f18047 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 @@ -25,9 +25,9 @@ from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import response_for_405 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 a4b8f8edaf2..bad5d1bf855 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 @@ -25,8 +25,8 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 from petstore_api.components.request_bodies import pet_request_body as request_body +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import response_for_405 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 461b995438d..0c19b92fd30 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_default from .. import path -from . import response_for_default 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 44ff5e780b4..09ec9fe0475 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_default -from . import response_for_default 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 4c1621b57a1..328be90ec45 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 @@ -23,9 +23,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 from .. import path -from . import response_for_200 from . import response_for_404 from . import parameter_0 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 10cd329e030..3c88c02d79c 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 @@ -23,8 +23,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_description_only_response as response_for_200 -from . import response_for_200 from . import response_for_404 from . import parameter_0 From 969c9f223cc790e96f2aa24bccab43bf87a429ea Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 17:11:59 -0800 Subject: [PATCH 20/44] Removes generation of responses when they are referenced --- .../codegen/DefaultGenerator.java | 37 ++++++++++--------- .../petstore/python/.openapi-generator/FILES | 16 -------- 2 files changed, 19 insertions(+), 34 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 8f43e5ec696..2173d844401 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -546,24 +546,25 @@ void generatePaths(List files, Map> operati // so each inline header should be a module in the response package String code = responseEntry.getKey(); CodegenResponse response = responseEntry.getValue(); - - for (Map.Entry entry: config.pathEndpointResponseTemplateFiles().entrySet()) { - String templateFile = entry.getKey(); - String renderedOutputFilename = entry.getValue(); - Map responseMap = new HashMap<>(); - responseMap.put("response", response); - responseMap.put("packageName", packageName); - String responseModuleName = (code.equals("default"))? "response_for_default" : "response_for_"+code; - String responseFilename = packageFilename(Arrays.asList("paths", pathModuleName, co.httpMethod, responseModuleName, renderedOutputFilename)); - pathsFiles.add(Arrays.asList(responseMap, templateFile, responseFilename)); - for (CodegenParameter header: response.getResponseHeaders()) { - for (String headerTemplateFile: config.pathEndpointResponseHeaderTemplateFiles()) { - Map headerMap = new HashMap<>(); - headerMap.put("parameter", header); - headerMap.put("imports", header.imports); - headerMap.put("packageName", packageName); - String headerFilename = packageFilename(Arrays.asList("paths", pathModuleName, co.httpMethod, responseModuleName, config.toParameterFileName(header.baseName) + ".py")); - pathsFiles.add(Arrays.asList(headerMap, headerTemplateFile, headerFilename)); + if (response.getRefModule() == null) { + for (Map.Entry entry: config.pathEndpointResponseTemplateFiles().entrySet()) { + String templateFile = entry.getKey(); + String renderedOutputFilename = entry.getValue(); + Map responseMap = new HashMap<>(); + responseMap.put("response", response); + responseMap.put("packageName", packageName); + String responseModuleName = (code.equals("default"))? "response_for_default" : "response_for_"+code; + String responseFilename = packageFilename(Arrays.asList("paths", pathModuleName, co.httpMethod, responseModuleName, renderedOutputFilename)); + pathsFiles.add(Arrays.asList(responseMap, templateFile, responseFilename)); + for (CodegenParameter header: response.getResponseHeaders()) { + for (String headerTemplateFile: config.pathEndpointResponseHeaderTemplateFiles()) { + Map headerMap = new HashMap<>(); + headerMap.put("parameter", header); + headerMap.put("imports", header.imports); + headerMap.put("packageName", packageName); + String headerFilename = packageFilename(Arrays.asList("paths", pathModuleName, co.httpMethod, responseModuleName, config.toParameterFileName(header.baseName) + ".py")); + pathsFiles.add(Arrays.asList(headerMap, headerTemplateFile, headerFilename)); + } } } } diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index 86aad5416b2..692d96c7364 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -531,7 +531,6 @@ petstore_api/paths/fake/delete/parameter_2.py petstore_api/paths/fake/delete/parameter_3.py petstore_api/paths/fake/delete/parameter_4.py petstore_api/paths/fake/delete/parameter_5.py -petstore_api/paths/fake/delete/response_for_200/__init__.py petstore_api/paths/fake/get/__init__.py petstore_api/paths/fake/get/__init__.pyi petstore_api/paths/fake/get/parameter_0.py @@ -541,7 +540,6 @@ petstore_api/paths/fake/get/parameter_3.py petstore_api/paths/fake/get/parameter_4.py petstore_api/paths/fake/get/parameter_5.py petstore_api/paths/fake/get/request_body.py -petstore_api/paths/fake/get/response_for_200/__init__.py petstore_api/paths/fake/get/response_for_404/__init__.py petstore_api/paths/fake/patch/__init__.py petstore_api/paths/fake/patch/__init__.pyi @@ -549,7 +547,6 @@ petstore_api/paths/fake/patch/response_for_200/__init__.py petstore_api/paths/fake/post/__init__.py petstore_api/paths/fake/post/__init__.pyi petstore_api/paths/fake/post/request_body.py -petstore_api/paths/fake/post/response_for_200/__init__.py petstore_api/paths/fake/post/response_for_404/__init__.py petstore_api/paths/fake_additional_properties_with_array_of_enums/__init__.py petstore_api/paths/fake_additional_properties_with_array_of_enums/get/__init__.py @@ -560,20 +557,17 @@ petstore_api/paths/fake_body_with_file_schema/__init__.py petstore_api/paths/fake_body_with_file_schema/put/__init__.py petstore_api/paths/fake_body_with_file_schema/put/__init__.pyi petstore_api/paths/fake_body_with_file_schema/put/request_body.py -petstore_api/paths/fake_body_with_file_schema/put/response_for_200/__init__.py petstore_api/paths/fake_body_with_query_params/__init__.py petstore_api/paths/fake_body_with_query_params/put/__init__.py petstore_api/paths/fake_body_with_query_params/put/__init__.pyi petstore_api/paths/fake_body_with_query_params/put/parameter_0.py petstore_api/paths/fake_body_with_query_params/put/request_body.py -petstore_api/paths/fake_body_with_query_params/put/response_for_200/__init__.py petstore_api/paths/fake_case_sensitive_params/__init__.py petstore_api/paths/fake_case_sensitive_params/put/__init__.py petstore_api/paths/fake_case_sensitive_params/put/__init__.pyi petstore_api/paths/fake_case_sensitive_params/put/parameter_0.py petstore_api/paths/fake_case_sensitive_params/put/parameter_1.py petstore_api/paths/fake_case_sensitive_params/put/parameter_2.py -petstore_api/paths/fake_case_sensitive_params/put/response_for_200/__init__.py petstore_api/paths/fake_classname_test/__init__.py petstore_api/paths/fake_classname_test/patch/__init__.py petstore_api/paths/fake_classname_test/patch/__init__.pyi @@ -582,7 +576,6 @@ petstore_api/paths/fake_delete_coffee_id/__init__.py petstore_api/paths/fake_delete_coffee_id/delete/__init__.py petstore_api/paths/fake_delete_coffee_id/delete/__init__.pyi petstore_api/paths/fake_delete_coffee_id/delete/parameter_0.py -petstore_api/paths/fake_delete_coffee_id/delete/response_for_200/__init__.py petstore_api/paths/fake_delete_coffee_id/delete/response_for_default/__init__.py petstore_api/paths/fake_health/__init__.py petstore_api/paths/fake_health/get/__init__.py @@ -592,7 +585,6 @@ petstore_api/paths/fake_inline_additional_properties/__init__.py petstore_api/paths/fake_inline_additional_properties/post/__init__.py petstore_api/paths/fake_inline_additional_properties/post/__init__.pyi petstore_api/paths/fake_inline_additional_properties/post/request_body.py -petstore_api/paths/fake_inline_additional_properties/post/response_for_200/__init__.py petstore_api/paths/fake_inline_composition/__init__.py petstore_api/paths/fake_inline_composition/post/__init__.py petstore_api/paths/fake_inline_composition/post/__init__.pyi @@ -604,12 +596,10 @@ petstore_api/paths/fake_json_form_data/__init__.py petstore_api/paths/fake_json_form_data/get/__init__.py petstore_api/paths/fake_json_form_data/get/__init__.pyi petstore_api/paths/fake_json_form_data/get/request_body.py -petstore_api/paths/fake_json_form_data/get/response_for_200/__init__.py petstore_api/paths/fake_json_patch/__init__.py petstore_api/paths/fake_json_patch/patch/__init__.py petstore_api/paths/fake_json_patch/patch/__init__.pyi petstore_api/paths/fake_json_patch/patch/request_body.py -petstore_api/paths/fake_json_patch/patch/response_for_200/__init__.py petstore_api/paths/fake_json_with_charset/__init__.py petstore_api/paths/fake_json_with_charset/post/__init__.py petstore_api/paths/fake_json_with_charset/post/__init__.pyi @@ -619,7 +609,6 @@ petstore_api/paths/fake_obj_in_query/__init__.py petstore_api/paths/fake_obj_in_query/get/__init__.py petstore_api/paths/fake_obj_in_query/get/__init__.pyi petstore_api/paths/fake_obj_in_query/get/parameter_0.py -petstore_api/paths/fake_obj_in_query/get/response_for_200/__init__.py petstore_api/paths/fake_parameter_collisions1_abab_self_ab/__init__.py petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.py petstore_api/paths/fake_parameter_collisions1_abab_self_ab/post/__init__.pyi @@ -659,7 +648,6 @@ petstore_api/paths/fake_ref_obj_in_query/__init__.py petstore_api/paths/fake_ref_obj_in_query/get/__init__.py petstore_api/paths/fake_ref_obj_in_query/get/__init__.pyi petstore_api/paths/fake_ref_obj_in_query/get/parameter_0.py -petstore_api/paths/fake_ref_obj_in_query/get/response_for_200/__init__.py petstore_api/paths/fake_refs_array_of_enums/__init__.py petstore_api/paths/fake_refs_array_of_enums/post/__init__.py petstore_api/paths/fake_refs_array_of_enums/post/__init__.pyi @@ -718,7 +706,6 @@ petstore_api/paths/fake_test_query_paramters/put/parameter_2.py petstore_api/paths/fake_test_query_paramters/put/parameter_3.py petstore_api/paths/fake_test_query_paramters/put/parameter_4.py petstore_api/paths/fake_test_query_paramters/put/parameter_5.py -petstore_api/paths/fake_test_query_paramters/put/response_for_200/__init__.py petstore_api/paths/fake_upload_download_file/__init__.py petstore_api/paths/fake_upload_download_file/post/__init__.py petstore_api/paths/fake_upload_download_file/post/__init__.pyi @@ -741,7 +728,6 @@ petstore_api/paths/foo/get/response_for_default/__init__.py petstore_api/paths/pet/__init__.py petstore_api/paths/pet/post/__init__.py petstore_api/paths/pet/post/__init__.pyi -petstore_api/paths/pet/post/response_for_200/__init__.py petstore_api/paths/pet/post/response_for_405/__init__.py petstore_api/paths/pet/put/__init__.py petstore_api/paths/pet/put/__init__.pyi @@ -830,12 +816,10 @@ petstore_api/paths/user_login/get/response_for_400/__init__.py petstore_api/paths/user_logout/__init__.py petstore_api/paths/user_logout/get/__init__.py petstore_api/paths/user_logout/get/__init__.pyi -petstore_api/paths/user_logout/get/response_for_default/__init__.py petstore_api/paths/user_username/__init__.py petstore_api/paths/user_username/delete/__init__.py petstore_api/paths/user_username/delete/__init__.pyi petstore_api/paths/user_username/delete/parameter_0.py -petstore_api/paths/user_username/delete/response_for_200/__init__.py petstore_api/paths/user_username/delete/response_for_404/__init__.py petstore_api/paths/user_username/get/__init__.py petstore_api/paths/user_username/get/__init__.pyi From d4cdbb238e0295c7e3fe5181e6dad9a7392e47c4 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Tue, 29 Nov 2022 17:15:37 -0800 Subject: [PATCH 21/44] deletes paths and regens it --- .../fake/delete/response_for_200/__init__.py | 28 ------------------- .../fake/get/response_for_200/__init__.py | 28 ------------------- .../fake/post/response_for_200/__init__.py | 28 ------------------- .../put/response_for_200/__init__.py | 28 ------------------- .../put/response_for_200/__init__.py | 28 ------------------- .../put/response_for_200/__init__.py | 28 ------------------- .../delete/response_for_200/__init__.py | 28 ------------------- .../post/response_for_200/__init__.py | 28 ------------------- .../get/response_for_200/__init__.py | 28 ------------------- .../patch/response_for_200/__init__.py | 28 ------------------- .../get/response_for_200/__init__.py | 28 ------------------- .../get/response_for_200/__init__.py | 28 ------------------- .../put/response_for_200/__init__.py | 28 ------------------- .../pet/post/response_for_200/__init__.py | 28 ------------------- .../get/response_for_default/__init__.py | 28 ------------------- .../delete/response_for_200/__init__.py | 28 ------------------- 16 files changed, 448 deletions(-) delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_200/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/response_for_default/__init__.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_200/__init__.py diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/delete/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/post/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_file_schema/put/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_body_with_query_params/put/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_case_sensitive_params/put/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_delete_coffee_id/delete/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_inline_additional_properties/post/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_form_data/get/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_json_patch/patch/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_obj_in_query/get/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_ref_obj_in_query/get/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake_test_query_paramters/put/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet/post/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/response_for_default/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/response_for_default/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_logout/get/response_for_default/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_200/__init__.py deleted file mode 100644 index 7ec95a8627a..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/user_username/delete/response_for_200/__init__.py +++ /dev/null @@ -1,28 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: schemas.Unset = schemas.unset - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, -) From aabef367d1e30caf37b239880277807e68c522f3 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Wed, 30 Nov 2022 11:50:52 -0800 Subject: [PATCH 22/44] Template and java update --- .../openapitools/codegen/CodegenConfig.java | 4 ++ .../openapitools/codegen/DefaultCodegen.java | 5 ++ .../codegen/DefaultGenerator.java | 27 +++++++++- .../languages/PythonClientCodegen.java | 20 ++++++-- .../resources/python/endpoint_doc.handlebars | 51 +------------------ .../resources/python/response_doc.handlebars | 50 ++++++++++++++++++ 6 files changed, 101 insertions(+), 56 deletions(-) create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java index 62160b04498..3d1328cd981 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java @@ -91,6 +91,8 @@ public interface CodegenConfig { String responseFileFolder(); + String responseDocFileFolder(); + String toApiName(String name); String toApiVarName(String name); @@ -229,6 +231,8 @@ public interface CodegenConfig { String toResponseFilename(String componentName); + String toResponseDocFilename(String componentName); + String toPathFileName(String path); String toParameterFileName(String baseName); diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 2f78e62771f..8a742a013ee 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -1251,6 +1251,8 @@ public String toRequestBodyFilename(String componentName) { public String toResponseFilename(String componentName) { return toModuleFilename(componentName); } + public String toResponseDocFilename(String componentName) { return toModuleFilename(componentName); } + @Override public String apiFileFolder() { return outputFolder + File.separator + apiPackage().replace('.', File.separatorChar); @@ -1284,6 +1286,9 @@ public String modelDocFileFolder() { @Override public String requestBodyDocFileFolder() { return outputFolder; } + @Override + public String responseDocFileFolder() { return outputFolder; } + @Override public Map additionalProperties() { return additionalProperties; diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 2173d844401..b7009f81950 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -721,7 +721,32 @@ private TreeMap generateResponses(List files) { throw new RuntimeException("Could not generate file '" + filename + "'", e); } } - // TODO code to generate doc file + // TODO make this a property that can be turned off and on + Boolean generateResponseDocumentation = Boolean.TRUE; + for (String templateName : config.responseDocTemplateFiles().keySet()) { + String docExtension = config.getDocExtension(); + String suffix = docExtension != null ? docExtension : config.responseDocTemplateFiles().get(templateName); + String docFilename = config.toResponseDocFilename(componentName); + String filename = config.responseDocFileFolder() + File.separator + docFilename + suffix; + + Map templateData = new HashMap<>(); + templateData.put("packageName", config.packageName()); + templateData.put("anchorPrefix", ""); + templateData.put("schemaNamePrefix1", config.packageName() + ".components.responses." + docFilename); + templateData.put("this", response); + templateData.put("@key", componentName); + try { + File written = processTemplateToFile(templateData, templateName, filename, generateResponseDocumentation, CodegenConstants.REQUEST_BODY_DOCS); + if (written != null) { + files.add(written); + if (config.isEnablePostProcessFile() && !dryRun) { + config.postProcessFile(written, "response-doc"); + } + } + } catch (Exception e) { + throw new RuntimeException("Could not generate file '" + filename + "'", e); + } + } } return responses; } 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 c74076e6a12..bb89fbd258a 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 @@ -85,6 +85,7 @@ public class PythonClientCodegen extends AbstractPythonCodegen { protected String apiDocPath = "docs/apis/tags/"; protected String modelDocPath = "docs/components/schema/"; protected String requestBodyDocPath = "docs/components/request_bodies/"; + protected String responseDocPath = "docs/components/responses/"; protected boolean useNose = false; protected boolean useInlineModelResolver = false; @@ -325,6 +326,7 @@ public void processOpts() { pathEndpointResponseHeaderTemplateFiles.add("header.handlebars"); pathEndpointTestTemplateFiles.add("endpoint_test.handlebars"); responseTemplateFiles.put("response.handlebars", ".py"); + responseDocTemplateFiles.put("response_doc.handlebars", ".md"); if (StringUtils.isEmpty(System.getenv("PYTHON_POST_PROCESS_FILE"))) { LOGGER.info("Environment variable PYTHON_POST_PROCESS_FILE not defined so the Python code may not be properly formatted. To define it, try 'export PYTHON_POST_PROCESS_FILE=\"/usr/local/bin/yapf -i\"' (Linux/Mac)"); @@ -2337,12 +2339,12 @@ public CodegenType getTag() { @Override public String apiDocFileFolder() { - return (outputFolder + "/" + apiDocPath); + return (outputFolder + File.separator + apiDocPath); } @Override public String modelDocFileFolder() { - return (outputFolder + "/" + modelDocPath); + return (outputFolder + File.separator + modelDocPath); } @Override @@ -2354,18 +2356,26 @@ public String toApiDocFilename(String name) { return toApiName(name); } + public String toResponseFilename(String componentName) { + return toModuleFilename(componentName) + "_response"; + } + + public String toResponseDocFilename(String componentName) { return toResponseFilename(componentName); } + + public String responseDocFileFolder() { + return outputFolder + File.separator + responseDocPath; + } + public String toRequestBodyFilename(String componentName) { return toModuleFilename(componentName) + "_request_body"; } - public String toResponseFilename(String componentName) { return toModuleFilename(componentName) + "_response"; } - public String toRequestBodyDocFilename(String componentName) { return toRequestBodyFilename(componentName); } public String requestBodyDocFileFolder() { - return outputFolder + "/" + requestBodyDocPath; + return outputFolder + File.separator + requestBodyDocPath; } @Override diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 6bad40d0124..cb7a8babc8b 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -165,56 +165,7 @@ default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) {{/each}} {{#each responses}} -#### response_for_{{@key}}.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | -headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers](#response_for_{{@key}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | -{{#each content}} - {{#with this.schema}} - -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} - {{/with}} -{{/each}} -{{#if responseHeaders}} -#### response_for_{{@key}}.Headers - -Key | Accessed Type | Description | Notes -------------- | ------------- | ------------- | ------------- - {{#each responseHeaders}} - {{#if schema}} - {{#with schema}} -{{../baseName}} | [response_for_{{../../@key}}.{{../paramName}}.schema](#response_for_{{../../@key}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} - {{/with}} - {{else}} - {{#each getContent}} - {{#with this}} - {{#with schema}} -{{../baseName}} | [response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} - {{/with}} - {{/with}} - {{/each}} - {{/if}} - {{/each}} - {{#each responseHeaders}} - {{#if schema}} - {{#with schema}} - -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} - {{/with}} - {{else}} - {{#each getContent}} - {{#with this}} - {{#with schema}} - -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} - {{/with}} - {{/with}} - {{/each}} - {{/if}} - {{/each}} -{{/if}} +{{> response_doc }} {{/each}} ### Authorization diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars new file mode 100644 index 00000000000..1f5ccf052ba --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -0,0 +1,50 @@ +#### response_for_{{@key}}.ApiResponse +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +response | urllib3.HTTPResponse | Raw response | +body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | +headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers](#response_for_{{@key}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | +{{#each content}} + {{#with this.schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} + {{/with}} +{{/each}} +{{#if responseHeaders}} +#### response_for_{{@key}}.Headers + +Key | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- + {{#each responseHeaders}} + {{#if schema}} + {{#with schema}} +{{../baseName}} | [response_for_{{../../@key}}.{{../paramName}}.schema](#response_for_{{../../@key}}.{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} + {{/with}} + {{else}} + {{#each getContent}} + {{#with this}} + {{#with schema}} +{{../baseName}} | [response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#response_for_{{../../../@key}}.{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} + {{/with}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} + {{#each responseHeaders}} + {{#if schema}} + {{#with schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} + {{/with}} + {{else}} + {{#each getContent}} + {{#with this}} + {{#with schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../../@key schemaNamePrefix3="." schemaNamePrefix4=../paramName schemaNamePrefix5="." complexTypePrefix="../../../components/schema/" }} + {{/with}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} +{{/if}} \ No newline at end of file From 104e4a32388a78a8e2f44c743d5cf14afa85bf7c Mon Sep 17 00:00:00 2001 From: Justin Black Date: Wed, 30 Nov 2022 13:06:30 -0800 Subject: [PATCH 23/44] Samples regenerated with doc links to component responses --- .../codegen/DefaultGenerator.java | 5 +- .../python/component_footer_links.handlebars | 4 ++ .../resources/python/endpoint_doc.handlebars | 12 +++- .../python/request_body_doc.handlebars | 1 + .../resources/python/response_doc.handlebars | 60 ++++++++++++++++++- .../petstore/python/.openapi-generator/FILES | 1 + .../tags/fake_api/body_with_file_schema.md | 9 +-- .../tags/fake_api/body_with_query_params.md | 9 +-- .../tags/fake_api/case_sensitive_params.md | 9 +-- .../docs/apis/tags/fake_api/delete_coffee.md | 9 +-- .../apis/tags/fake_api/endpoint_parameters.md | 9 +-- .../apis/tags/fake_api/enum_parameters.md | 9 +-- .../apis/tags/fake_api/group_parameters.md | 9 +-- .../fake_api/inline_additional_properties.md | 9 +-- .../docs/apis/tags/fake_api/json_form_data.md | 9 +-- .../docs/apis/tags/fake_api/json_patch.md | 9 +-- .../apis/tags/fake_api/object_in_query.md | 9 +-- .../query_parameter_collection_format.md | 9 +-- .../apis/tags/fake_api/ref_object_in_query.md | 9 +-- .../python/docs/apis/tags/pet_api/add_pet.md | 9 +-- .../docs/apis/tags/user_api/delete_user.md | 9 +-- .../docs/apis/tags/user_api/logout_user.md | 9 +-- .../success_description_only_response.md | 9 +++ 23 files changed, 103 insertions(+), 133 deletions(-) create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars create mode 100644 samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index b7009f81950..28c15d9fcdd 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -720,6 +720,7 @@ private TreeMap generateResponses(List files) { } catch (Exception e) { throw new RuntimeException("Could not generate file '" + filename + "'", e); } + // TODO add generation of inline headers here if needed } // TODO make this a property that can be turned off and on Boolean generateResponseDocumentation = Boolean.TRUE; @@ -731,10 +732,8 @@ private TreeMap generateResponses(List files) { Map templateData = new HashMap<>(); templateData.put("packageName", config.packageName()); - templateData.put("anchorPrefix", ""); + templateData.put("response", refResponse); templateData.put("schemaNamePrefix1", config.packageName() + ".components.responses." + docFilename); - templateData.put("this", response); - templateData.put("@key", componentName); try { File written = processTemplateToFile(templateData, templateName, filename, generateResponseDocumentation, CodegenConstants.REQUEST_BODY_DOCS); if (written != null) { diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars new file mode 100644 index 00000000000..14f9a3123dc --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars @@ -0,0 +1,4 @@ +{{#if refModule}} +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + +{{/if}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index cb7a8babc8b..8764476a725 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -158,14 +158,24 @@ Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned {{#if defaultResponse}} +{{#if defaultResponse.refModule}} +default | [{{refModule}}.ApiResponse](../../../components/responses/{{refModule}}.md) | {{defaultResponse.message}} +{{else}} default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{defaultResponse.message}} {{/if}} +{{/if}} {{#each nonDefaultResponses}} +{{#if refModule}} +{{@key}} | [{{refModule}}.ApiResponse](../../../components/responses/{{refModule}}.md) | {{message}} +{{else}} {{@key}} | [response_for_{{@key}}.ApiResponse](#response_for_{{@key}}.ApiResponse) | {{message}} +{{/if}} {{/each}} {{#each responses}} +{{#unless refModule}} -{{> response_doc }} +{{> response_doc response=this }} +{{/unless}} {{/each}} ### Authorization diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars index 1632ff991cb..110c723b2c9 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars @@ -4,4 +4,5 @@ {{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../components/schema/" }} {{/with}} {{/each}} +{{> component_footer_links }} {{/with}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index 1f5ccf052ba..b5c08198c5f 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -1,7 +1,23 @@ +{{#with response}} +{{#if refModule}} + +#### {{packageName}}.components.responses.{{refModule}}.ApiResponse +{{else}} #### response_for_{{@key}}.ApiResponse +{{/if}} Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | +{{#if refModule}} +body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | +headers | {{#unless responseHeaders}}Unset{{else}}[Headers](#Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | +{{#each content}} + {{#with this.schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../../components/schema/" }} + {{/with}} +{{/each}} +{{else}} body | {{#unless content}}Unset{{else}}typing.Union[{{#each content}}{{#if this.schema}}[response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}](#response_for_{{../@key}}.{{#if this.schema.nameInSnakeCase}}{{this.schema.name}}{{else}}{{this.schema.baseName}}{{/if}}){{else}}Unset{{/if}}, {{/each}}]{{/unless}} | {{#unless content}}body was not defined{{/unless}} | headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers](#response_for_{{@key}}.Headers){{/unless}} | {{#unless responseHeaders}}headers were not defined{{/unless}} | {{#each content}} @@ -10,11 +26,50 @@ headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers {{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../@key schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/each}} +{{/if}} {{#if responseHeaders}} +{{#if refModule}} +#### Headers +{{else}} #### response_for_{{@key}}.Headers +{{/if}} Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- +{{#if refModule}} + {{#each responseHeaders}} + {{#if schema}} + {{#with schema}} +{{../baseName}} | [{{../paramName}}.schema](#{{../paramName}}.schema) | | {{#unless required}}optional{{/unless}} + {{/with}} + {{else}} + {{#each getContent}} + {{#with this}} + {{#with schema}} +{{../baseName}} | [{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}](#{{../paramName}}.{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}) | | {{#unless required}}optional{{/unless}} + {{/with}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} + {{#each responseHeaders}} + {{#if schema}} + {{#with schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} + {{/with}} + {{else}} + {{#each getContent}} + {{#with this}} + {{#with schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} + {{/with}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} +{{else}} {{#each responseHeaders}} {{#if schema}} {{#with schema}} @@ -47,4 +102,7 @@ Key | Accessed Type | Description | Notes {{/each}} {{/if}} {{/each}} -{{/if}} \ No newline at end of file +{{/if}} +{{/if}} +{{> component_footer_links }} +{{/with}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index 692d96c7364..a4cea1af75d 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -69,6 +69,7 @@ docs/apis/tags/user_api/update_user.md docs/components/request_bodies/client_request_body.md docs/components/request_bodies/pet_request_body.md docs/components/request_bodies/user_array_request_body.md +docs/components/responses/success_description_only_response.md docs/components/schema/abstract_step_message.AbstractStepMessage.md docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index c20076e21a1..6c2534933ae 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -61,14 +61,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index bbec532d9a2..57469ebbba9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -86,14 +86,7 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index f7aef8c0aee..2bbedddb65d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -81,14 +81,7 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 2f5ef22b935..c8ba09b9870 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -65,14 +65,7 @@ Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Unexpected error -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success #### response_for_default.ApiResponse Name | Type | Description | Notes diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 31ba9822116..235a580bd54 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -102,16 +102,9 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success 404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | - #### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 11193adb1c6..4c32e9fb957 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -173,16 +173,9 @@ str, | str, | | must be one of ["_abc", "-efg", "(xyz)", ] if omitted the ser Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success 404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | Not found -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | - #### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index 48895f75b71..5f6f3561483 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -148,14 +148,7 @@ str, | str, | | must be one of ["true", "false", ] Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index 8c3fe5ee5dd..acc10035214 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -62,14 +62,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 3793b5d5862..e0d8ea0606c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -65,14 +65,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 793cf9dd089..da20f799aac 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -58,14 +58,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index b3ee911f441..ce606720ee5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -71,14 +71,7 @@ Key | Input Type | Accessed Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index 9d82e00a77e..2d32c963ec1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -142,14 +142,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index cf37e9db5c9..164064c48eb 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -64,14 +64,7 @@ Type | Description | Notes Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index bdb00df88e9..4f170ad6ccd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -138,16 +138,9 @@ skip_deserialization | bool | default is False | when True, headers and body wil Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success 405 | [response_for_405.ApiResponse](#response_for_405.ApiResponse) | Invalid input -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | - #### response_for_405.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index 6807fda22c5..3c2b880cf7e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -64,16 +64,9 @@ str, | str, | | Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | Success +200 | [success_description_only_response.ApiResponse](../../../components/responses/success_description_only_response.md) | Success 404 | [response_for_404.ApiResponse](#response_for_404.ApiResponse) | User not found -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | - #### response_for_404.ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 82c966c54ff..8b00e0c54da 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -37,14 +37,7 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Success - -#### response_for_default.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | -headers | Unset | headers were not defined | +default | [.ApiResponse](../../../components/responses/.md) | Success ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md new file mode 100644 index 00000000000..487eecb8331 --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -0,0 +1,9 @@ + +#### petstore_api.components.responses.success_description_only_response.ApiResponse +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +response | urllib3.HTTPResponse | Raw response | +body | Unset | body was not defined | +headers | Unset | headers were not defined | +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + From 314c444fcf691a08419c705daa7005d06fdb03b0 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Wed, 30 Nov 2022 13:15:21 -0800 Subject: [PATCH 24/44] Samples regen to include component links --- .../main/java/org/openapitools/codegen/DefaultGenerator.java | 2 +- .../main/resources/python/component_footer_links.handlebars | 1 + .../docs/components/request_bodies/client_request_body.md | 3 +++ .../python/docs/components/request_bodies/pet_request_body.md | 3 +++ .../docs/components/request_bodies/user_array_request_body.md | 3 +++ .../components/responses/success_description_only_response.md | 1 + 6 files changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 28c15d9fcdd..9f64a14aecb 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -803,7 +803,7 @@ private TreeMap generateRequestBodies(List files templateData.put("packageName", config.packageName()); templateData.put("anchorPrefix", ""); templateData.put("schemaNamePrefix1", config.packageName() + ".components.request_bodies." + docFilename); - templateData.put("bodyParam", requestBody); + templateData.put("bodyParam", refRequestBody); try { File written = processTemplateToFile(templateData, templateName, filename, generateRequestBodyDocumentation, CodegenConstants.REQUEST_BODY_DOCS); if (written != null) { diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars index 14f9a3123dc..0ba43bfd957 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars @@ -1,4 +1,5 @@ {{#if refModule}} + [[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) {{/if}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md index de3093368f4..51150eada71 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md @@ -3,3 +3,6 @@ Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../components/schema/client.Client.md) | | + +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md index 6264eb3bce1..b46310777b6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md @@ -8,3 +8,6 @@ Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../components/schema/pet.Pet.md) | | + +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md index 196df3f9b4a..672577a2671 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md @@ -9,3 +9,6 @@ list, tuple, | tuple, | | Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | | + +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md index 487eecb8331..c2b043638ef 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -5,5 +5,6 @@ Name | Type | Description | Notes response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | + [[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) From 689d6836aff271a8906291726c55acb79ef512a9 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Wed, 30 Nov 2022 13:20:56 -0800 Subject: [PATCH 25/44] Fixes link to component response --- .../src/main/resources/python/README_common.handlebars | 2 +- samples/openapi3/client/petstore/python/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars index 1e4c365dc76..9629c4fc236 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars @@ -44,7 +44,7 @@ HTTP request | Method | Description ## Documentation For Component Responses {{#each responses}} -- {{#with this}}[{{refModule}}](docs/components/request_bodies/{{refModule}}.md){{/with}} +- {{#with this}}[{{refModule}}](docs/components/responses/{{refModule}}.md){{/with}} {{/each}} {{/if}} diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 362637a1cb2..577c97cfb29 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -364,7 +364,7 @@ HTTP request | Method | Description ## Documentation For Component Responses -- [success_description_only_response](docs/components/request_bodies/success_description_only_response.md) +- [success_description_only_response](docs/components/responses/success_description_only_response.md) ## Documentation For Authorization From b9d35791f3490378d6d242fc6de2df7fc963436e Mon Sep 17 00:00:00 2001 From: Justin Black Date: Wed, 30 Nov 2022 13:42:05 -0800 Subject: [PATCH 26/44] Adds geenration component response inline headers --- .../codegen/DefaultGenerator.java | 32 ++++++++++++++++--- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 9f64a14aecb..550bb2adb33 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -702,15 +702,15 @@ private TreeMap generateResponses(List files) { for (Map.Entry entry : config.responseTemplateFiles().entrySet()) { String templateName = entry.getKey(); String fileExtension = entry.getValue(); - String fileFolder = config.responseFileFolder(); - String filename = fileFolder + File.separatorChar + config.toResponseFilename(componentName) + fileExtension; + String responseFileFolder = config.responseFileFolder(); + String responseFilename = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName) + fileExtension; Map templateData = new HashMap<>(); templateData.put("packageName", config.packageName()); templateData.put("response", response); templateData.put("imports", response.imports); try { - File written = processTemplateToFile(templateData, templateName, filename, generateResponses, CodegenConstants.RESPONSES, fileFolder); + File written = processTemplateToFile(templateData, templateName, responseFilename, generateResponses, CodegenConstants.RESPONSES, responseFileFolder); if (written != null) { files.add(written); if (config.isEnablePostProcessFile() && !dryRun) { @@ -718,9 +718,31 @@ private TreeMap generateResponses(List files) { } } } catch (Exception e) { - throw new RuntimeException("Could not generate file '" + filename + "'", e); + throw new RuntimeException("Could not generate file '" + responseFilename + "'", e); + } + if (response.getResponseHeaders() != null) { + for (CodegenParameter header: response.getResponseHeaders()) { + for (String headerTemplateName: config.pathEndpointResponseHeaderTemplateFiles()) { + Map headerMap = new HashMap<>(); + headerMap.put("parameter", header); + headerMap.put("imports", header.imports); + headerMap.put("packageName", config.packageName()); + String headerFolder = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName); + String headerFilename = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName) + File.separatorChar + config.toParameterFileName(header.baseName) + ".py"; + try { + File written = processTemplateToFile(headerMap, headerTemplateName, headerFilename, generateResponses, CodegenConstants.RESPONSES, headerFolder); + if (written != null) { + files.add(written); + if (config.isEnablePostProcessFile() && !dryRun) { + config.postProcessFile(written, "response-header"); + } + } + } catch (Exception e) { + throw new RuntimeException("Could not generate file '" + headerFilename + "'", e); + } + } + } } - // TODO add generation of inline headers here if needed } // TODO make this a property that can be turned off and on Boolean generateResponseDocumentation = Boolean.TRUE; From 754ee854ccd44b34f89919c5000d92b5b8890ca7 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 08:41:13 -0800 Subject: [PATCH 27/44] Sammple updated to include component response with refed content schema --- ...oints-models-for-testing-with-http-signature.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml index a7a916efdfe..1a4a5a5d6f7 100644 --- a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml +++ b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml @@ -264,11 +264,7 @@ paths: format: int64 responses: '200': - description: successful operation - content: - application/json: - schema: - $ref: '#/components/schemas/ApiResponse' + $ref: '#/components/responses/SuccessWithJsonApiResponse' security: - petstore_auth: - 'write:pets' @@ -1652,6 +1648,12 @@ components: responses: SuccessDescriptionOnly: description: Success + SuccessWithJsonApiResponse: + description: successful operation + content: + application/json: + schema: + $ref: '#/components/schemas/ApiResponse' requestBodies: UserArray: content: From 44ef62844f021915566a04b025fd07aaab5ff15c Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 08:51:03 -0800 Subject: [PATCH 28/44] Sample regen and test template tweaked --- .../resources/python/endpoint_test.handlebars | 39 +++++++++--------- .../petstore/python/.openapi-generator/FILES | 3 +- .../openapi3/client/petstore/python/README.md | 1 + .../docs/apis/tags/pet_api/upload_image.md | 15 +------ ...success_with_json_api_response_response.md | 10 +++++ ...success_with_json_api_response_response.py | 40 +++++++++++++++++++ .../pet_pet_id_upload_image/post/__init__.py | 2 +- .../pet_pet_id_upload_image/post/__init__.pyi | 2 +- .../test_pet_pet_id_upload_image/test_post.py | 4 +- 9 files changed, 76 insertions(+), 40 deletions(-) create mode 100644 samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md create mode 100644 samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars index aa2a3836f22..67d11002504 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars @@ -34,30 +34,30 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#each responses}} {{#if @first}} response_status = {{#eq @key "default"}}0{{else}}{{@key}}{{/eq}} -{{#if content}} -{{#each content}} - {{#if schema}} + {{#if content}} + {{#each content}} + {{#if schema}} response_body_schema = {{httpMethod}}.response_for_{{../@key}}.{{#if schema.nameInSnakeCase}}{{schema.name}}{{else}}{{schema.baseName}}{{/if}} - {{/if}} + {{/if}} -{{#if this.testCases}} -{{#each testCases}} -{{#with this }} + {{#if this.testCases}} + {{#each testCases}} + {{#with this }} def test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}}(self): # {{description}} accept_content_type = '{{{../@key}}}' with patch.object(urllib3.PoolManager, 'request') as mock_request: payload = ( -{{#with data}} + {{#with data}} {{> model_templates/payload_renderer endChar='' }} -{{/with}} + {{/with}} ) mock_request.return_value = self.response( self.json_bytes(payload), status=self.response_status ) -{{#if valid}} + {{#if valid}} {{> endpoint_test_partial }} assert isinstance(api_response.response, urllib3.HTTPResponse) @@ -67,7 +67,7 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): _configuration=self._configuration ) assert api_response.body == deserialized_response_body -{{else}} + {{else}} with self.assertRaises(({{packageName}}.ApiValueError, {{packageName}}.ApiTypeError)): self.api.{{httpMethod}}( accept_content_types=(accept_content_type,) @@ -79,17 +79,16 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): content_type=None, accept_content_type=accept_content_type, ) -{{/if}} -{{/with}} - -{{/each}} + {{/if}} + {{/with}} + {{/each}} + {{/if}} -{{/if}} -{{/each}} -{{else}} + {{/each}} + {{else}} response_body = '' -{{/if}} -{{/if}} + {{/if}} + {{/if}} {{/each}} {{#if bodyParam}} {{#with bodyParam}} diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index a4cea1af75d..6850202b555 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -70,6 +70,7 @@ docs/components/request_bodies/client_request_body.md docs/components/request_bodies/pet_request_body.md docs/components/request_bodies/user_array_request_body.md docs/components/responses/success_description_only_response.md +docs/components/responses/success_with_json_api_response_response.md docs/components/schema/abstract_step_message.AbstractStepMessage.md docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md @@ -264,6 +265,7 @@ petstore_api/components/request_bodies/client_request_body.py petstore_api/components/request_bodies/pet_request_body.py petstore_api/components/request_bodies/user_array_request_body.py petstore_api/components/responses/success_description_only_response.py +petstore_api/components/responses/success_with_json_api_response_response.py petstore_api/components/schema/__init__.py petstore_api/components/schema/abstract_step_message.py petstore_api/components/schema/abstract_step_message.pyi @@ -769,7 +771,6 @@ petstore_api/paths/pet_pet_id_upload_image/post/__init__.py petstore_api/paths/pet_pet_id_upload_image/post/__init__.pyi petstore_api/paths/pet_pet_id_upload_image/post/parameter_0.py petstore_api/paths/pet_pet_id_upload_image/post/request_body.py -petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py petstore_api/paths/store_inventory/__init__.py petstore_api/paths/store_inventory/get/__init__.py petstore_api/paths/store_inventory/get/__init__.pyi diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 577c97cfb29..b7359f42d16 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -365,6 +365,7 @@ HTTP request | Method | Description ## Documentation For Component Responses - [success_description_only_response](docs/components/responses/success_description_only_response.md) +- [success_with_json_api_response_response](docs/components/responses/success_with_json_api_response_response.md) ## Documentation For Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 3f8db21a9f8..62ecce34d39 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -109,20 +109,7 @@ decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | -headers | Unset | headers were not defined | - -# response_for_200.application_json -Type | Description | Notes -------------- | ------------- | ------------- -[**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | - +200 | [success_with_json_api_response_response.ApiResponse](../../../components/responses/success_with_json_api_response_response.md) | successful operation ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md new file mode 100644 index 00000000000..d642f709705 --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -0,0 +1,10 @@ + +#### petstore_api.components.responses.success_with_json_api_response_response.ApiResponse +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +response | urllib3.HTTPResponse | Raw response | +body | Unset | body was not defined | +headers | Unset | headers were not defined | + +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py new file mode 100644 index 00000000000..53ba2c91211 --- /dev/null +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py @@ -0,0 +1,40 @@ +import dataclasses +import urllib3 + +from petstore_api import api_client +from datetime import date, datetime # noqa: F401 +import decimal # noqa: F401 +import functools # noqa: F401 +import io # noqa: F401 +import re # noqa: F401 +import typing # noqa: F401 +import typing_extensions # noqa: F401 +import uuid # noqa: F401 + +import frozendict # noqa: F401 + +from petstore_api import schemas # noqa: F401 + +api_response.ApiResponse + +# body schemas +application_json = api_response.ApiResponse + + +@dataclasses.dataclass +class ApiResponse(api_client.ApiResponse): + response: urllib3.HTTPResponse + body: typing.Union[ + application_json, + ] + headers: schemas.Unset = schemas.unset + + +response = api_client.OpenApiResponse( + response_cls=ApiResponse, + content={ + 'application/json': api_client.MediaType( + schema=application_json, + ), + }, +) 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 69950b6481f..f0c70880dbb 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_with_json_api_response_response as response_for_200 from .. import path -from . import response_for_200 from . import request_body from . import parameter_0 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 d676b27e657..bfb17e3fa28 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_with_json_api_response_response as response_for_200 -from . import response_for_200 from . import request_body from . import parameter_0 diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py index 69e9fc1d8a5..0ad6f18c056 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py @@ -33,9 +33,7 @@ def tearDown(self): pass response_status = 200 - response_body_schema = post.response_for_200.application_json - - + response_body = '' if __name__ == '__main__': From 5d100406d0c3570f6a12432a798aaa34ec79d87c Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 10:07:40 -0800 Subject: [PATCH 29/44] Fixes component response anchors for headers and body --- .../java/org/openapitools/codegen/DefaultCodegen.java | 2 +- .../org/openapitools/codegen/DefaultGenerator.java | 1 - .../python/api_doc_schema_type_hint.handlebars | 2 +- .../src/main/resources/python/response_doc.handlebars | 7 ++++--- .../responses/success_description_only_response.md | 3 ++- .../success_with_json_api_response_response.md | 11 +++++++++-- .../test_pet_pet_id_upload_image/test_post.py | 4 +++- 7 files changed, 20 insertions(+), 10 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 8a742a013ee..d963350138b 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4451,7 +4451,7 @@ public CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath) } r.setResponseHeaders(responseHeaders); } - r.setContent(getContent(response.getContent(), r.imports, "", usedSourceJsonPath + "/content")); + r.setContent(getContent(usedResponse.getContent(), r.imports, "", usedSourceJsonPath + "/content")); return r; } diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 550bb2adb33..3ab63d58473 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -755,7 +755,6 @@ private TreeMap generateResponses(List files) { Map templateData = new HashMap<>(); templateData.put("packageName", config.packageName()); templateData.put("response", refResponse); - templateData.put("schemaNamePrefix1", config.packageName() + ".components.responses." + docFilename); try { File written = processTemplateToFile(templateData, templateName, filename, generateResponseDocumentation, CodegenConstants.REQUEST_BODY_DOCS); if (written != null) { diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc_schema_type_hint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc_schema_type_hint.handlebars index 7357e52eacf..ef5295e440c 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc_schema_type_hint.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc_schema_type_hint.handlebars @@ -1,4 +1,4 @@ -# {{#if schemaNamePrefix1}}{{#if anchorContainsPeriod}}{{/if}}{{> api_doc_schema_fancy_schema_name }}{{#if anchorContainsPeriod}}{{/if}}{{else}}{{baseName}}{{/if}} +# {{#if schemaNamePrefix1}}{{#if anchorContainsPeriod}}{{/if}}{{> api_doc_schema_fancy_schema_name }}{{#if anchorContainsPeriod}}{{/if}}{{else}}{{#if nameInSnakeCase}}{{name}}{{else}}{{baseName}}{{/if}}{{/if}} {{#if refClass}} Type | Description | Notes ------------- | ------------- | ------------- diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index b5c08198c5f..c6505cfc05e 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -1,7 +1,8 @@ {{#with response}} {{#if refModule}} -#### {{packageName}}.components.responses.{{refModule}}.ApiResponse +# {{packageName}}.components.responses.{{refModule}} +## ApiResponse {{else}} #### response_for_{{@key}}.ApiResponse {{/if}} @@ -14,7 +15,7 @@ headers | {{#unless responseHeaders}}Unset{{else}}[Headers](#Headers){{/unless}} {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint complexTypePrefix="../../../components/schema/" }} {{/with}} {{/each}} {{else}} @@ -29,7 +30,7 @@ headers | {{#unless responseHeaders}}Unset{{else}}[response_for_{{@key}}.Headers {{/if}} {{#if responseHeaders}} {{#if refModule}} -#### Headers +## Headers {{else}} #### response_for_{{@key}}.Headers {{/if}} diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md index c2b043638ef..c5012a22fb0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -1,5 +1,6 @@ -#### petstore_api.components.responses.success_description_only_response.ApiResponse +# petstore_api.components.responses.success_description_only_response +## ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md index d642f709705..5444723f71c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -1,10 +1,17 @@ -#### petstore_api.components.responses.success_with_json_api_response_response.ApiResponse +# petstore_api.components.responses.success_with_json_api_response_response +## ApiResponse Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- response | urllib3.HTTPResponse | Raw response | -body | Unset | body was not defined | +body | typing.Union[[application_json](#application_json), ] | | headers | Unset | headers were not defined | +# application_json +Type | Description | Notes +------------- | ------------- | ------------- +[**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | + + [[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py index 0ad6f18c056..69e9fc1d8a5 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py @@ -33,7 +33,9 @@ def tearDown(self): pass response_status = 200 - response_body = '' + response_body_schema = post.response_for_200.application_json + + if __name__ == '__main__': From 289f158dc16a20377d24c984bc409606bed38b62 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 10:19:21 -0800 Subject: [PATCH 30/44] Fixes schema links in component response --- .../src/main/resources/python/response_doc.handlebars | 4 ++-- .../responses/success_with_json_api_response_response.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index c6505cfc05e..c69cb246793 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -15,7 +15,7 @@ headers | {{#unless responseHeaders}}Unset{{else}}[Headers](#Headers){{/unless}} {{#each content}} {{#with this.schema}} -{{> api_doc_schema_type_hint complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint complexTypePrefix="../../components/schema/" }} {{/with}} {{/each}} {{else}} @@ -57,7 +57,7 @@ Key | Accessed Type | Description | Notes {{#if schema}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../components/schema/" }} {{/with}} {{else}} {{#each getContent}} diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md index 5444723f71c..3b6935ac4b3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -10,7 +10,7 @@ headers | Unset | headers were not defined | # application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ApiResponse**](../../../components/schema/api_response.ApiResponse.md) | | +[**ApiResponse**](../../components/schema/api_response.ApiResponse.md) | | [[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) From 33a912e594e11f7bd9e82829e4066788c35727c2 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 10:38:05 -0800 Subject: [PATCH 31/44] Fixes imports for CodegenResponse --- .../codegen/languages/PythonClientCodegen.java | 9 ++++++--- .../responses/success_with_json_api_response_response.py | 2 +- 2 files changed, 7 insertions(+), 4 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 bb89fbd258a..fcf06f1b0d6 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 @@ -24,6 +24,7 @@ import io.swagger.v3.oas.models.Operation; import io.swagger.v3.oas.models.PathItem; import io.swagger.v3.oas.models.Paths; +import io.swagger.v3.oas.models.responses.ApiResponse; import io.swagger.v3.oas.models.servers.Server; import io.swagger.v3.oas.models.tags.Tag; @@ -717,9 +718,6 @@ public OperationsMap postProcessOperationsWithModels(OperationsMap objs, List operations = val.getOperation(); for (CodegenOperation operation : operations) { fixSchemaImports(operation.imports); - for (CodegenResponse response: operation.responses.values()) { - fixSchemaImports(response.imports); - } } return objs; } @@ -812,6 +810,11 @@ private boolean isValidPythonVarOrClassName(String name) { return name.matches("^[_a-zA-Z][_a-zA-Z0-9]*$"); } + public CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath) { + CodegenResponse cr = super.fromResponse(response, sourceJsonPath); + fixSchemaImports(cr.imports); + return cr; + } /** * Convert OAS Property object to Codegen Property object diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py index 53ba2c91211..9c57328a637 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py @@ -15,7 +15,7 @@ from petstore_api import schemas # noqa: F401 -api_response.ApiResponse +from petstore_api.components.schema import api_response # body schemas application_json = api_response.ApiResponse From 340102b78eb7f211cf992a99f5a1c0bbbafe6e82 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 10:55:54 -0800 Subject: [PATCH 32/44] Adds response with inline content and header definition --- ...odels-for-testing-with-http-signature.yaml | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml index 1a4a5a5d6f7..b983a9172d8 100644 --- a/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml +++ b/modules/openapi-json-schema-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml @@ -291,14 +291,7 @@ paths: operationId: getInventory responses: '200': - description: successful operation - content: - application/json: - schema: - type: object - additionalProperties: - type: integer - format: int32 + $ref: '#/components/responses/SuccessInlineContentAndHeader' security: - api_key: [] /store/order: @@ -1654,6 +1647,19 @@ components: application/json: schema: $ref: '#/components/schemas/ApiResponse' + SuccessInlineContentAndHeader: + description: successful operation + headers: + someHeader: + schema: + type: string + content: + application/json: + schema: + type: object + additionalProperties: + type: integer + format: int32 requestBodies: UserArray: content: From efaa1e1c0195cf4532d10fa9ce0e5240a9d655a0 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 11:02:53 -0800 Subject: [PATCH 33/44] Sample regenerated --- .../petstore/python/.openapi-generator/FILES | 4 +- .../openapi3/client/petstore/python/README.md | 1 + .../docs/apis/tags/store_api/get_inventory.md | 21 +--------- ...cess_inline_content_and_header_response.md | 35 ++++++++++++++++ ...ess_inline_content_and_header_response.py} | 27 ++++++++++++- .../parameter_some_header.py | 34 ++++++++++++++++ .../post/response_for_200/__init__.py | 40 ------------------- .../paths/store_inventory/get/__init__.py | 2 +- .../paths/store_inventory/get/__init__.pyi | 2 +- 9 files changed, 102 insertions(+), 64 deletions(-) create mode 100644 samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md rename samples/openapi3/client/petstore/python/petstore_api/{paths/store_inventory/get/response_for_200/__init__.py => components/responses/success_inline_content_and_header_response.py} (75%) create mode 100644 samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py delete mode 100644 samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index 6850202b555..bb688fd36d8 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -70,6 +70,7 @@ docs/components/request_bodies/client_request_body.md docs/components/request_bodies/pet_request_body.md docs/components/request_bodies/user_array_request_body.md docs/components/responses/success_description_only_response.md +docs/components/responses/success_inline_content_and_header_response.md docs/components/responses/success_with_json_api_response_response.md docs/components/schema/abstract_step_message.AbstractStepMessage.md docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md @@ -265,6 +266,8 @@ petstore_api/components/request_bodies/client_request_body.py petstore_api/components/request_bodies/pet_request_body.py petstore_api/components/request_bodies/user_array_request_body.py petstore_api/components/responses/success_description_only_response.py +petstore_api/components/responses/success_inline_content_and_header_response.py +petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py petstore_api/components/responses/success_with_json_api_response_response.py petstore_api/components/schema/__init__.py petstore_api/components/schema/abstract_step_message.py @@ -774,7 +777,6 @@ petstore_api/paths/pet_pet_id_upload_image/post/request_body.py petstore_api/paths/store_inventory/__init__.py petstore_api/paths/store_inventory/get/__init__.py petstore_api/paths/store_inventory/get/__init__.pyi -petstore_api/paths/store_inventory/get/response_for_200/__init__.py petstore_api/paths/store_order/__init__.py petstore_api/paths/store_order/post/__init__.py petstore_api/paths/store_order/post/__init__.pyi diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index b7359f42d16..4d9fd0cb16e 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -365,6 +365,7 @@ HTTP request | Method | Description ## Documentation For Component Responses - [success_description_only_response](docs/components/responses/success_description_only_response.md) +- [success_inline_content_and_header_response](docs/components/responses/success_inline_content_and_header_response.md) - [success_with_json_api_response_response](docs/components/responses/success_with_json_api_response_response.md) ## Documentation For Authorization diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index c309f27a0a7..ef822266ae4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -50,26 +50,7 @@ This endpoint does not need any parameter. Code | Class | Description ------------- | ------------- | ------------- n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization is True this response is returned -200 | [response_for_200.ApiResponse](#response_for_200.ApiResponse) | successful operation - -#### response_for_200.ApiResponse -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- -response | urllib3.HTTPResponse | Raw response | -body | typing.Union[[response_for_200.application_json](#response_for_200.application_json), ] | | -headers | Unset | headers were not defined | - -# response_for_200.application_json - -## Model Type Info -Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- -dict, frozendict.frozendict, | frozendict.frozendict, | | - -### Dictionary Keys -Key | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- -**any_string_name** | decimal.Decimal, int, | decimal.Decimal, | any string name can be used but the value must be the correct type | [optional] value must be a 32 bit integer +200 | [success_inline_content_and_header_response.ApiResponse](../../../components/responses/success_inline_content_and_header_response.md) | successful operation ### Authorization diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md new file mode 100644 index 00000000000..5608cc9ac0a --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md @@ -0,0 +1,35 @@ + +# petstore_api.components.responses.success_inline_content_and_header_response +## ApiResponse +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +response | urllib3.HTTPResponse | Raw response | +body | typing.Union[[application_json](#application_json), ] | | +headers | [Headers](#Headers) | | + +# application_json + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +dict, frozendict.frozendict, | frozendict.frozendict, | | + +### Dictionary Keys +Key | Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- | ------------- +**any_string_name** | decimal.Decimal, int, | decimal.Decimal, | any string name can be used but the value must be the correct type | [optional] value must be a 32 bit integer +## Headers + +Key | Accessed Type | Description | Notes +------------- | ------------- | ------------- | ------------- +someHeader | [parameter_some_header.schema](#parameter_some_header.schema) | | optional + +# schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) + diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response.py similarity index 75% rename from samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/response_for_200/__init__.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response.py index 00cd1e762dd..bbe05bd8c3e 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/store_inventory/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response.py @@ -14,7 +14,31 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from . import parameter_some_header + +class Header: + RequiredParams = typing_extensions.TypedDict( + 'RequiredParams', + { + } + ) + OptionalParams = typing_extensions.TypedDict( + 'OptionalParams', + { + 'someHeader': typing.Union[parameter_some_header.schema, str, ], + }, + total=False + ) + + + class Params(RequiredParams, OptionalParams): + pass + + + parameters = [ + parameter_some_header.parameter_oapg, + ] # body schemas @@ -54,7 +78,7 @@ class ApiResponse(api_client.ApiResponse): body: typing.Union[ application_json, ] - headers: schemas.Unset = schemas.unset + headers: Header.Params response = api_client.OpenApiResponse( @@ -64,4 +88,5 @@ class ApiResponse(api_client.ApiResponse): schema=application_json, ), }, + headers=Header.parameters ) diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py new file mode 100644 index 00000000000..1b7434633b5 --- /dev/null +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py @@ -0,0 +1,34 @@ +# coding: utf-8 + +""" + + + Generated by: https://openapi-generator.tech +""" + +from dataclasses import dataclass +import typing_extensions +import urllib3 + +from petstore_api import api_client, exceptions +from datetime import date, datetime # noqa: F401 +import decimal # noqa: F401 +import functools # noqa: F401 +import io # noqa: F401 +import re # noqa: F401 +import typing # noqa: F401 +import typing_extensions # noqa: F401 +import uuid # noqa: F401 + +import frozendict # noqa: F401 + +from petstore_api import schemas # noqa: F401 + + +schema = schemas.StrSchema + + +parameter_oapg = api_client.HeaderParameterWithoutName( + style=api_client.ParameterStyle.SIMPLE, + schema=schema, +) diff --git a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py deleted file mode 100644 index 9c57328a637..00000000000 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py +++ /dev/null @@ -1,40 +0,0 @@ -import dataclasses -import urllib3 - -from petstore_api import api_client -from datetime import date, datetime # noqa: F401 -import decimal # noqa: F401 -import functools # noqa: F401 -import io # noqa: F401 -import re # noqa: F401 -import typing # noqa: F401 -import typing_extensions # noqa: F401 -import uuid # noqa: F401 - -import frozendict # noqa: F401 - -from petstore_api import schemas # noqa: F401 - -from petstore_api.components.schema import api_response - -# body schemas -application_json = api_response.ApiResponse - - -@dataclasses.dataclass -class ApiResponse(api_client.ApiResponse): - response: urllib3.HTTPResponse - body: typing.Union[ - application_json, - ] - headers: schemas.Unset = schemas.unset - - -response = api_client.OpenApiResponse( - response_cls=ApiResponse, - content={ - 'application/json': api_client.MediaType( - schema=application_json, - ), - }, -) 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 a0a32448a44..3dfab5c86c3 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 @@ -24,9 +24,9 @@ import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_inline_content_and_header_response as response_for_200 from .. import path -from . import response_for_200 _auth = [ 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 a5844e0e25d..e12a6c0e22d 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 @@ -24,8 +24,8 @@ import uuid # noqa: F401 import frozendict # noqa: F401 from petstore_api import schemas # noqa: F401 +from petstore_api.components.responses import success_inline_content_and_header_response as response_for_200 -from . import response_for_200 _all_accept_content_types = ( 'application/json', From 7cd89d319cdac4d93d213e7a3bb8e9f4bb77d3e5 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 11:35:50 -0800 Subject: [PATCH 34/44] Readme links updated --- .../src/main/resources/python/README_common.handlebars | 8 ++++---- .../src/main/resources/python/api_doc.handlebars | 2 +- .../resources/python/component_footer_links.handlebars | 5 ----- .../src/main/resources/python/endpoint_doc.handlebars | 3 +-- .../src/main/resources/python/footer_links.handlebars | 1 + .../main/resources/python/request_body_doc.handlebars | 6 +++++- .../src/main/resources/python/response_doc.handlebars | 10 +++++++--- samples/openapi3/client/petstore/python/README.md | 8 ++++---- .../petstore/python/docs/apis/tags/AnotherFakeApi.md | 2 +- .../petstore/python/docs/apis/tags/DefaultApi.md | 2 +- .../client/petstore/python/docs/apis/tags/FakeApi.md | 2 +- .../python/docs/apis/tags/FakeClassnameTags123Api.md | 2 +- .../client/petstore/python/docs/apis/tags/PetApi.md | 2 +- .../client/petstore/python/docs/apis/tags/StoreApi.md | 2 +- .../client/petstore/python/docs/apis/tags/UserApi.md | 2 +- .../another_fake_api/call_123_test_special_tags.md | 2 +- .../python/docs/apis/tags/default_api/foo_get.md | 2 +- .../additional_properties_with_array_of_enums.md | 2 +- .../python/docs/apis/tags/fake_api/array_model.md | 2 +- .../python/docs/apis/tags/fake_api/array_of_enums.md | 2 +- .../docs/apis/tags/fake_api/body_with_file_schema.md | 2 +- .../docs/apis/tags/fake_api/body_with_query_params.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/boolean.md | 2 +- .../docs/apis/tags/fake_api/case_sensitive_params.md | 2 +- .../python/docs/apis/tags/fake_api/client_model.md | 2 +- .../tags/fake_api/composed_one_of_different_types.md | 2 +- .../python/docs/apis/tags/fake_api/delete_coffee.md | 2 +- .../docs/apis/tags/fake_api/endpoint_parameters.md | 2 +- .../python/docs/apis/tags/fake_api/enum_parameters.md | 2 +- .../python/docs/apis/tags/fake_api/fake_health_get.md | 2 +- .../python/docs/apis/tags/fake_api/group_parameters.md | 2 +- .../apis/tags/fake_api/inline_additional_properties.md | 2 +- .../docs/apis/tags/fake_api/inline_composition.md | 2 +- .../python/docs/apis/tags/fake_api/json_form_data.md | 2 +- .../python/docs/apis/tags/fake_api/json_patch.md | 2 +- .../docs/apis/tags/fake_api/json_with_charset.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/mammal.md | 2 +- .../docs/apis/tags/fake_api/number_with_validations.md | 2 +- .../python/docs/apis/tags/fake_api/object_in_query.md | 2 +- .../apis/tags/fake_api/object_model_with_ref_props.md | 2 +- .../docs/apis/tags/fake_api/parameter_collisions.md | 2 +- .../fake_api/query_param_with_json_content_type.md | 2 +- .../tags/fake_api/query_parameter_collection_format.md | 2 +- .../docs/apis/tags/fake_api/ref_object_in_query.md | 2 +- .../docs/apis/tags/fake_api/response_without_schema.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/string.md | 2 +- .../python/docs/apis/tags/fake_api/string_enum.md | 2 +- .../docs/apis/tags/fake_api/upload_download_file.md | 2 +- .../python/docs/apis/tags/fake_api/upload_file.md | 2 +- .../python/docs/apis/tags/fake_api/upload_files.md | 2 +- .../apis/tags/fake_classname_tags123_api/classname.md | 2 +- .../petstore/python/docs/apis/tags/pet_api/add_pet.md | 2 +- .../python/docs/apis/tags/pet_api/delete_pet.md | 2 +- .../docs/apis/tags/pet_api/find_pets_by_status.md | 2 +- .../python/docs/apis/tags/pet_api/find_pets_by_tags.md | 2 +- .../python/docs/apis/tags/pet_api/get_pet_by_id.md | 2 +- .../python/docs/apis/tags/pet_api/update_pet.md | 2 +- .../docs/apis/tags/pet_api/update_pet_with_form.md | 2 +- .../tags/pet_api/upload_file_with_required_file.md | 2 +- .../python/docs/apis/tags/pet_api/upload_image.md | 2 +- .../python/docs/apis/tags/store_api/delete_order.md | 2 +- .../python/docs/apis/tags/store_api/get_inventory.md | 2 +- .../python/docs/apis/tags/store_api/get_order_by_id.md | 2 +- .../python/docs/apis/tags/store_api/place_order.md | 2 +- .../python/docs/apis/tags/user_api/create_user.md | 2 +- .../tags/user_api/create_users_with_array_input.md | 2 +- .../apis/tags/user_api/create_users_with_list_input.md | 2 +- .../python/docs/apis/tags/user_api/delete_user.md | 2 +- .../python/docs/apis/tags/user_api/get_user_by_name.md | 2 +- .../python/docs/apis/tags/user_api/login_user.md | 2 +- .../python/docs/apis/tags/user_api/logout_user.md | 2 +- .../python/docs/apis/tags/user_api/update_user.md | 2 +- .../components/request_bodies/client_request_body.md | 2 +- .../docs/components/request_bodies/pet_request_body.md | 2 +- .../request_bodies/user_array_request_body.md | 2 +- .../responses/success_description_only_response.md | 2 +- .../success_inline_content_and_header_response.md | 4 ++-- .../success_with_json_api_response_response.md | 2 +- 78 files changed, 94 insertions(+), 91 deletions(-) delete mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars create mode 100644 modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars index 9629c4fc236..e5340c28dfd 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars @@ -12,7 +12,7 @@ {{/each}} {{/with}} -## Documentation for API Endpoints +## Endpoints All URIs are relative to *{{basePath}}* @@ -24,7 +24,7 @@ HTTP request | Method | Description {{/with}} {{/each}} -## Documentation For Component Schemas (Models) +## Component Schemas {{#each models}} {{#with model}} @@ -33,7 +33,7 @@ HTTP request | Method | Description {{/each}} {{#if requestBodies}} -## Documentation For Component RequestBodies +## Component RequestBodies {{#each requestBodies}} - {{#with this}}[{{refModule}}](docs/components/request_bodies/{{refModule}}.md){{/with}} @@ -41,7 +41,7 @@ HTTP request | Method | Description {{/if}} {{#if responses}} -## Documentation For Component Responses +## Component Responses {{#each responses}} - {{#with this}}[{{refModule}}](docs/components/responses/{{refModule}}.md){{/with}} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars index 09a19292fb6..ae3dcad08e4 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars @@ -12,4 +12,4 @@ Method | HTTP request | Description {{/each}} {{/with}} -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) {{> footer_links readmePath="../../../" }} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars deleted file mode 100644 index 0ba43bfd957..00000000000 --- a/modules/openapi-json-schema-generator/src/main/resources/python/component_footer_links.handlebars +++ /dev/null @@ -1,5 +0,0 @@ -{{#if refModule}} - -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) - -{{/if}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 8764476a725..14cf80161c7 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -186,6 +186,5 @@ No authorization required {{#each authMethods}}[{{{name}}}](../../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}} {{/unless}} -[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) {{> footer_links readmePath="../../../../" }} {{/each}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars new file mode 100644 index 00000000000..f254929e5e6 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars @@ -0,0 +1 @@ +[[Back to Endpoints]]({{readmePath}}README.md#Endpoints) [[Back to Component Schemas]]({{readmePath}}README.md#Component-Schemas) [[Back to README]]({{readmePath}}README.md) \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars index 110c723b2c9..d9660725ff1 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars @@ -4,5 +4,9 @@ {{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../components/schema/" }} {{/with}} {{/each}} -{{> component_footer_links }} +{{#if refModule}} + +[[Back to top]](#top) {{> footer_links readmePath="../../../" }} + +{{/if}} {{/with}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index c69cb246793..6ad209536a4 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -57,14 +57,14 @@ Key | Accessed Type | Description | Notes {{#if schema}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1=../paramName schemaNamePrefix2="." complexTypePrefix="../../components/schema/" }} {{/with}} {{else}} {{#each getContent}} {{#with this}} {{#with schema}} -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix2=../paramName schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1=../paramName schemaNamePrefix2="." complexTypePrefix="../../../components/schema/" }} {{/with}} {{/with}} {{/each}} @@ -105,5 +105,9 @@ Key | Accessed Type | Description | Notes {{/each}} {{/if}} {{/if}} -{{> component_footer_links }} +{{#if refModule}} + +[[Back to top]](#top) {{> footer_links readmePath="../../../" }} + +{{/if}} {{/with}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 4d9fd0cb16e..80dc4a0fc0f 100644 --- a/samples/openapi3/client/petstore/python/README.md +++ b/samples/openapi3/client/petstore/python/README.md @@ -164,7 +164,7 @@ with petstore_api.ApiClient(configuration) as api_client: print("Exception when calling AnotherFakeApi->call_123_test_special_tags: %s\n" % e) ``` -## Documentation for API Endpoints +## Endpoints All URIs are relative to *http://petstore.swagger.io:80/v2* @@ -228,7 +228,7 @@ HTTP request | Method | Description **put** /user/{username} | [UserApi](docs/apis/tags/UserApi.md).[update_user](docs/apis/tags/user_api/update_user.md) | Updated user **post** /user | [UserApi](docs/apis/tags/UserApi.md).[create_user](docs/apis/tags/user_api/create_user.md) | Create user -## Documentation For Component Schemas (Models) +## Component Schemas - [AbstractStepMessage](docs/components/schema/abstract_step_message.AbstractStepMessage.md) - [AdditionalPropertiesClass](docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md) @@ -356,13 +356,13 @@ HTTP request | Method | Description - [Whale](docs/components/schema/whale.Whale.md) - [Zebra](docs/components/schema/zebra.Zebra.md) -## Documentation For Component RequestBodies +## Component RequestBodies - [client_request_body](docs/components/request_bodies/client_request_body.md) - [pet_request_body](docs/components/request_bodies/pet_request_body.md) - [user_array_request_body](docs/components/request_bodies/user_array_request_body.md) -## Documentation For Component Responses +## Component Responses - [success_description_only_response](docs/components/responses/success_description_only_response.md) - [success_inline_content_and_header_response](docs/components/responses/success_inline_content_and_header_response.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md index e8ce606ed3d..af1dffeb8a9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**call_123_test_special_tags**](another_fake_api/call_123_test_special_tags.md) | **patch** /another-fake/dummy | To test special tags -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md index d61bf95c953..06b2acfd281 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**foo_get**](default_api/foo_get.md) | **get** /foo | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md index a86516a85a9..733ad5e08cb 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md @@ -39,4 +39,4 @@ Method | HTTP request | Description [**upload_file**](fake_api/upload_file.md) | **post** /fake/uploadFile | uploads a file using multipart/form-data [**upload_files**](fake_api/upload_files.md) | **post** /fake/uploadFiles | uploads files using multipart/form-data -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md index f03cc8bba8e..e0a67ef57d6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**classname**](fake_classname_tags123_api/classname.md) | **patch** /fake_classname_test | To test class name in snake case -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md index d77d7ee970e..2667e5612e7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md @@ -15,4 +15,4 @@ Method | HTTP request | Description [**upload_file_with_required_file**](pet_api/upload_file_with_required_file.md) | **post** /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) [**upload_image**](pet_api/upload_image.md) | **post** /pet/{petId}/uploadImage | uploads an image -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md index e4f7d85e60d..e93f1e4fd2b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**get_order_by_id**](store_api/get_order_by_id.md) | **get** /store/order/{order_id} | Find purchase order by ID [**place_order**](store_api/place_order.md) | **post** /store/order | Place an order for a pet -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md index 6c2711ab25d..b23006a76e9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**logout_user**](user_api/logout_user.md) | **get** /user/logout | Logs out current logged in user session [**update_user**](user_api/update_user.md) | **put** /user/{username} | Updated user -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index ce58f892ce3..b267d349316 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -71,5 +71,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index 3ecf33c7630..b81b255fa79 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -61,5 +61,5 @@ Key | Input Type | Accessed Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index ef280839dd1..4e9695af45b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -78,5 +78,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index cebe7b41e4f..efa4f45b832 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -76,5 +76,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index dabd1f22bd5..5a3394dd70b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -76,5 +76,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index 6c2534933ae..02d4ecff43e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -67,5 +67,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index 57469ebbba9..9bab74037c6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -92,5 +92,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index 25c8904d430..a929bd1bf75 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -74,5 +74,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index 2bbedddb65d..420fb60ba6d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -87,5 +87,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index 49496cf533e..94744c0ec99 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -71,5 +71,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index 8914a28cdbf..7d6bdf6e57f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -74,5 +74,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index c8ba09b9870..02de3c66a27 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -78,5 +78,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 235a580bd54..5488285bebc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -116,5 +116,5 @@ headers | Unset | headers were not defined | [http_basic_test](../../../../README.md#http_basic_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 4c32e9fb957..7bb705a0922 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -194,5 +194,5 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 3963f59b05c..5da03264cf5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -56,5 +56,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index 5f6f3561483..d9302a00045 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -154,5 +154,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [bearer_test](../../../../README.md#bearer_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index acc10035214..ed01d8ff6d9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -68,5 +68,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index cf225ef3a9b..bbe6f335bc4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -237,5 +237,5 @@ str, | str, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index e0d8ea0606c..5894ca9fbc9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -71,5 +71,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index da20f799aac..244a66f284d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -64,5 +64,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index bfb35fcdf05..4112ea06c41 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -76,5 +76,5 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index 304f7d1b21d..cb791f30789 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -78,5 +78,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index e70d26ead41..2b28c1e2a97 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -74,5 +74,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index ce606720ee5..cf95ace290c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -77,5 +77,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index 3d0bd561abf..cedf6d9dbe0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -78,5 +78,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index 99c12cfd5d9..e063d1d72fd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -314,5 +314,5 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 88286f51597..552b8963fd0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -77,5 +77,5 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index 2d32c963ec1..82156005a87 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -148,5 +148,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index 164064c48eb..e29a6f2c6ba 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -70,5 +70,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index fa34f49b10a..2dfd0c031da 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -50,5 +50,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index eb94880ef47..fca284d5494 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -74,5 +74,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 05c8997cd17..af2bfd40294 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -74,5 +74,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index 26d6ca25332..c045b8b9333 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -80,5 +80,5 @@ bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to download | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 30e1cc9f866..4f1e4a52908 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -85,5 +85,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index 664bfecb670..120c482427f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -97,5 +97,5 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index 8e6dcee6920..955c2b876a1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -82,5 +82,5 @@ Type | Description | Notes [api_key_query](../../../../README.md#api_key_query) -[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index 4f170ad6ccd..b03015d2cdf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -152,5 +152,5 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index 7b99812c317..d66583137fd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -121,5 +121,5 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index 77341fb4f51..fddd3072dc9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -189,5 +189,5 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index 71101d927cc..4e557f7874a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -189,5 +189,5 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index 67ab183ab96..1cac2daab5b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -117,5 +117,5 @@ headers | Unset | headers were not defined | [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index f2fa1e7f00b..d135620c3ee 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -165,5 +165,5 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index 465a0b45049..78245f64a19 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -121,5 +121,5 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 8ae9312598f..211b42a353a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -128,5 +128,5 @@ Type | Description | Notes [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 62ecce34d39..d21f335c88a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -115,5 +115,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index faa9bea6f4d..fccba57fe97 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -85,5 +85,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index ef822266ae4..6f26255649a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -56,5 +56,5 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index 27ac69181cf..40d8814534e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -106,5 +106,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 28f898db814..eb12db02630 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -95,5 +95,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index 7dec88754db..790a2ce2c73 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -83,5 +83,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index 7b15b2249de..ee92d339d1a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -76,5 +76,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index 2566840ef66..c053d67aee7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -76,5 +76,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index 3c2b880cf7e..bd53429d64d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -78,5 +78,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index e3ea023af0f..0a71bef2e07 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -104,5 +104,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index d696d9fb506..e8598373495 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -128,5 +128,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 8b00e0c54da..8fa30029cf7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -43,5 +43,5 @@ default | [.ApiResponse](../../../components/responses/.md) | Success No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index a1837489512..c09ef3a577d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -110,5 +110,5 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md index 51150eada71..fd2a211b25c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md @@ -4,5 +4,5 @@ Type | Description | Notes [**Client**](../../components/schema/client.Client.md) | | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md index b46310777b6..1e5fba5bfe3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md @@ -9,5 +9,5 @@ Type | Description | Notes [**Pet**](../../components/schema/pet.Pet.md) | | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md index 672577a2671..b8675ae3d81 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md @@ -10,5 +10,5 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md index c5012a22fb0..c823dae3218 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -7,5 +7,5 @@ response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md index 5608cc9ac0a..02d12734980 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md @@ -24,12 +24,12 @@ Key | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- someHeader | [parameter_some_header.schema](#parameter_some_header.schema) | | optional -# schema +# parameter_some_header.schema ## Model Type Info Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md index 3b6935ac4b3..091d494330d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -13,5 +13,5 @@ Type | Description | Notes [**ApiResponse**](../../components/schema/api_response.ApiResponse.md) | | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) From 431d4ab43b94a5005338e1a7d01884161d762152 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 11:45:05 -0800 Subject: [PATCH 35/44] Simplifies doc link generation --- .../src/main/resources/python/endpoint_doc.handlebars | 2 +- .../src/main/resources/python/footer_links.handlebars | 2 +- .../src/main/resources/python/model_doc.handlebars | 4 ++-- .../src/main/resources/python/request_body_doc.handlebars | 3 +-- .../src/main/resources/python/response_doc.handlebars | 3 +-- .../client/petstore/python/docs/apis/tags/AnotherFakeApi.md | 2 +- .../client/petstore/python/docs/apis/tags/DefaultApi.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/FakeApi.md | 2 +- .../petstore/python/docs/apis/tags/FakeClassnameTags123Api.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/PetApi.md | 2 +- .../client/petstore/python/docs/apis/tags/StoreApi.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/UserApi.md | 2 +- .../apis/tags/another_fake_api/call_123_test_special_tags.md | 3 +-- .../petstore/python/docs/apis/tags/default_api/foo_get.md | 3 +-- .../fake_api/additional_properties_with_array_of_enums.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/array_model.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/array_of_enums.md | 3 +-- .../python/docs/apis/tags/fake_api/body_with_file_schema.md | 3 +-- .../python/docs/apis/tags/fake_api/body_with_query_params.md | 3 +-- .../client/petstore/python/docs/apis/tags/fake_api/boolean.md | 3 +-- .../python/docs/apis/tags/fake_api/case_sensitive_params.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/client_model.md | 3 +-- .../apis/tags/fake_api/composed_one_of_different_types.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/delete_coffee.md | 3 +-- .../python/docs/apis/tags/fake_api/endpoint_parameters.md | 3 +-- .../python/docs/apis/tags/fake_api/enum_parameters.md | 3 +-- .../python/docs/apis/tags/fake_api/fake_health_get.md | 3 +-- .../python/docs/apis/tags/fake_api/group_parameters.md | 3 +-- .../docs/apis/tags/fake_api/inline_additional_properties.md | 3 +-- .../python/docs/apis/tags/fake_api/inline_composition.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/json_form_data.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/json_patch.md | 3 +-- .../python/docs/apis/tags/fake_api/json_with_charset.md | 3 +-- .../client/petstore/python/docs/apis/tags/fake_api/mammal.md | 3 +-- .../python/docs/apis/tags/fake_api/number_with_validations.md | 3 +-- .../python/docs/apis/tags/fake_api/object_in_query.md | 3 +-- .../docs/apis/tags/fake_api/object_model_with_ref_props.md | 3 +-- .../python/docs/apis/tags/fake_api/parameter_collisions.md | 3 +-- .../apis/tags/fake_api/query_param_with_json_content_type.md | 3 +-- .../apis/tags/fake_api/query_parameter_collection_format.md | 3 +-- .../python/docs/apis/tags/fake_api/ref_object_in_query.md | 3 +-- .../python/docs/apis/tags/fake_api/response_without_schema.md | 3 +-- .../client/petstore/python/docs/apis/tags/fake_api/string.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/string_enum.md | 3 +-- .../python/docs/apis/tags/fake_api/upload_download_file.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/upload_file.md | 3 +-- .../petstore/python/docs/apis/tags/fake_api/upload_files.md | 3 +-- .../docs/apis/tags/fake_classname_tags123_api/classname.md | 3 +-- .../client/petstore/python/docs/apis/tags/pet_api/add_pet.md | 3 +-- .../petstore/python/docs/apis/tags/pet_api/delete_pet.md | 3 +-- .../python/docs/apis/tags/pet_api/find_pets_by_status.md | 3 +-- .../python/docs/apis/tags/pet_api/find_pets_by_tags.md | 3 +-- .../petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md | 3 +-- .../petstore/python/docs/apis/tags/pet_api/update_pet.md | 3 +-- .../python/docs/apis/tags/pet_api/update_pet_with_form.md | 3 +-- .../docs/apis/tags/pet_api/upload_file_with_required_file.md | 3 +-- .../petstore/python/docs/apis/tags/pet_api/upload_image.md | 3 +-- .../petstore/python/docs/apis/tags/store_api/delete_order.md | 3 +-- .../petstore/python/docs/apis/tags/store_api/get_inventory.md | 3 +-- .../python/docs/apis/tags/store_api/get_order_by_id.md | 3 +-- .../petstore/python/docs/apis/tags/store_api/place_order.md | 3 +-- .../petstore/python/docs/apis/tags/user_api/create_user.md | 3 +-- .../docs/apis/tags/user_api/create_users_with_array_input.md | 3 +-- .../docs/apis/tags/user_api/create_users_with_list_input.md | 3 +-- .../petstore/python/docs/apis/tags/user_api/delete_user.md | 3 +-- .../python/docs/apis/tags/user_api/get_user_by_name.md | 3 +-- .../petstore/python/docs/apis/tags/user_api/login_user.md | 3 +-- .../petstore/python/docs/apis/tags/user_api/logout_user.md | 3 +-- .../petstore/python/docs/apis/tags/user_api/update_user.md | 3 +-- .../docs/components/request_bodies/client_request_body.md | 3 +-- .../python/docs/components/request_bodies/pet_request_body.md | 3 +-- .../docs/components/request_bodies/user_array_request_body.md | 3 +-- .../components/responses/success_description_only_response.md | 3 +-- .../responses/success_inline_content_and_header_response.md | 3 +-- .../responses/success_with_json_api_response_response.md | 3 +-- .../schema/abstract_step_message.AbstractStepMessage.md | 4 ++-- .../additional_properties_class.AdditionalPropertiesClass.md | 4 ++-- ...onal_properties_validator.AdditionalPropertiesValidator.md | 4 ++-- ...ith_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md | 4 ++-- .../petstore/python/docs/components/schema/address.Address.md | 4 ++-- .../petstore/python/docs/components/schema/animal.Animal.md | 4 ++-- .../python/docs/components/schema/animal_farm.AnimalFarm.md | 4 ++-- .../components/schema/any_type_and_format.AnyTypeAndFormat.md | 4 ++-- .../components/schema/any_type_not_string.AnyTypeNotString.md | 4 ++-- .../python/docs/components/schema/api_response.ApiResponse.md | 4 ++-- .../petstore/python/docs/components/schema/apple.Apple.md | 4 ++-- .../python/docs/components/schema/apple_req.AppleReq.md | 4 ++-- .../schema/array_holding_any_type.ArrayHoldingAnyType.md | 4 ++-- .../array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md | 4 ++-- .../docs/components/schema/array_of_enums.ArrayOfEnums.md | 4 ++-- .../schema/array_of_number_only.ArrayOfNumberOnly.md | 4 ++-- .../python/docs/components/schema/array_test.ArrayTest.md | 4 ++-- ...y_with_validations_in_items.ArrayWithValidationsInItems.md | 4 ++-- .../petstore/python/docs/components/schema/banana.Banana.md | 4 ++-- .../python/docs/components/schema/banana_req.BananaReq.md | 4 ++-- .../client/petstore/python/docs/components/schema/bar.Bar.md | 4 ++-- .../python/docs/components/schema/basque_pig.BasquePig.md | 4 ++-- .../petstore/python/docs/components/schema/boolean.Boolean.md | 4 ++-- .../python/docs/components/schema/boolean_enum.BooleanEnum.md | 4 ++-- .../docs/components/schema/capitalization.Capitalization.md | 4 ++-- .../client/petstore/python/docs/components/schema/cat.Cat.md | 4 ++-- .../python/docs/components/schema/category.Category.md | 4 ++-- .../python/docs/components/schema/child_cat.ChildCat.md | 4 ++-- .../python/docs/components/schema/class_model.ClassModel.md | 4 ++-- .../petstore/python/docs/components/schema/client.Client.md | 4 ++-- .../schema/complex_quadrilateral.ComplexQuadrilateral.md | 4 ++-- ...no_validations.ComposedAnyOfDifferentTypesNoValidations.md | 4 ++-- .../docs/components/schema/composed_array.ComposedArray.md | 4 ++-- .../docs/components/schema/composed_bool.ComposedBool.md | 4 ++-- .../docs/components/schema/composed_none.ComposedNone.md | 4 ++-- .../docs/components/schema/composed_number.ComposedNumber.md | 4 ++-- .../docs/components/schema/composed_object.ComposedObject.md | 4 ++-- ...osed_one_of_different_types.ComposedOneOfDifferentTypes.md | 4 ++-- .../docs/components/schema/composed_string.ComposedString.md | 4 ++-- .../python/docs/components/schema/currency.Currency.md | 4 ++-- .../python/docs/components/schema/danish_pig.DanishPig.md | 4 ++-- .../docs/components/schema/date_time_test.DateTimeTest.md | 4 ++-- .../date_time_with_validations.DateTimeWithValidations.md | 4 ++-- .../schema/date_with_validations.DateWithValidations.md | 4 ++-- .../docs/components/schema/decimal_payload.DecimalPayload.md | 4 ++-- .../client/petstore/python/docs/components/schema/dog.Dog.md | 4 ++-- .../petstore/python/docs/components/schema/drawing.Drawing.md | 4 ++-- .../python/docs/components/schema/enum_arrays.EnumArrays.md | 4 ++-- .../python/docs/components/schema/enum_class.EnumClass.md | 4 ++-- .../python/docs/components/schema/enum_test.EnumTest.md | 4 ++-- .../schema/equilateral_triangle.EquilateralTriangle.md | 4 ++-- .../petstore/python/docs/components/schema/file.File.md | 4 ++-- .../schema/file_schema_test_class.FileSchemaTestClass.md | 4 ++-- .../client/petstore/python/docs/components/schema/foo.Foo.md | 4 ++-- .../python/docs/components/schema/format_test.FormatTest.md | 4 ++-- .../python/docs/components/schema/from_schema.FromSchema.md | 4 ++-- .../petstore/python/docs/components/schema/fruit.Fruit.md | 4 ++-- .../python/docs/components/schema/fruit_req.FruitReq.md | 4 ++-- .../python/docs/components/schema/gm_fruit.GmFruit.md | 4 ++-- .../components/schema/grandparent_animal.GrandparentAnimal.md | 4 ++-- .../components/schema/has_only_read_only.HasOnlyReadOnly.md | 4 ++-- .../schema/health_check_result.HealthCheckResult.md | 4 ++-- .../python/docs/components/schema/integer_enum.IntegerEnum.md | 4 ++-- .../docs/components/schema/integer_enum_big.IntegerEnumBig.md | 4 ++-- .../schema/integer_enum_one_value.IntegerEnumOneValue.md | 4 ++-- ...ger_enum_with_default_value.IntegerEnumWithDefaultValue.md | 4 ++-- .../docs/components/schema/integer_max10.IntegerMax10.md | 4 ++-- .../docs/components/schema/integer_min15.IntegerMin15.md | 4 ++-- .../components/schema/isosceles_triangle.IsoscelesTriangle.md | 4 ++-- .../components/schema/json_patch_request.JSONPatchRequest.md | 4 ++-- ...request_add_replace_test.JSONPatchRequestAddReplaceTest.md | 4 ++-- .../json_patch_request_move_copy.JSONPatchRequestMoveCopy.md | 4 ++-- .../json_patch_request_remove.JSONPatchRequestRemove.md | 4 ++-- .../petstore/python/docs/components/schema/mammal.Mammal.md | 4 ++-- .../python/docs/components/schema/map_test.MapTest.md | 4 ++-- ...rties_class.MixedPropertiesAndAdditionalPropertiesClass.md | 4 ++-- .../components/schema/model200_response.Model200Response.md | 4 ++-- .../python/docs/components/schema/model_return.ModelReturn.md | 4 ++-- .../petstore/python/docs/components/schema/money.Money.md | 4 ++-- .../petstore/python/docs/components/schema/name.Name.md | 4 ++-- .../schema/no_additional_properties.NoAdditionalProperties.md | 4 ++-- .../docs/components/schema/nullable_class.NullableClass.md | 4 ++-- .../docs/components/schema/nullable_shape.NullableShape.md | 4 ++-- .../docs/components/schema/nullable_string.NullableString.md | 4 ++-- .../petstore/python/docs/components/schema/number.Number.md | 4 ++-- .../python/docs/components/schema/number_only.NumberOnly.md | 4 ++-- .../schema/number_with_validations.NumberWithValidations.md | 4 ++-- .../components/schema/object_interface.ObjectInterface.md | 4 ++-- ...and_args_properties.ObjectModelWithArgAndArgsProperties.md | 4 ++-- .../object_model_with_ref_props.ObjectModelWithRefProps.md | 4 ++-- ...add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md | 4 ++-- ...ect_with_decimal_properties.ObjectWithDecimalProperties.md | 4 ++-- ...difficultly_named_props.ObjectWithDifficultlyNamedProps.md | 4 ++-- ...omposition_property.ObjectWithInlineCompositionProperty.md | 4 ++-- ..._refed_properties.ObjectWithInvalidNamedRefedProperties.md | 4 ++-- ...ject_with_optional_test_prop.ObjectWithOptionalTestProp.md | 4 ++-- .../schema/object_with_validations.ObjectWithValidations.md | 4 ++-- .../petstore/python/docs/components/schema/order.Order.md | 4 ++-- .../python/docs/components/schema/parent_pet.ParentPet.md | 4 ++-- .../client/petstore/python/docs/components/schema/pet.Pet.md | 4 ++-- .../client/petstore/python/docs/components/schema/pig.Pig.md | 4 ++-- .../petstore/python/docs/components/schema/player.Player.md | 4 ++-- .../docs/components/schema/quadrilateral.Quadrilateral.md | 4 ++-- .../schema/quadrilateral_interface.QuadrilateralInterface.md | 4 ++-- .../docs/components/schema/read_only_first.ReadOnlyFirst.md | 4 ++-- .../components/schema/scalene_triangle.ScaleneTriangle.md | 4 ++-- .../self_referencing_array_model.SelfReferencingArrayModel.md | 4 ++-- ...elf_referencing_object_model.SelfReferencingObjectModel.md | 4 ++-- .../petstore/python/docs/components/schema/shape.Shape.md | 4 ++-- .../docs/components/schema/shape_or_null.ShapeOrNull.md | 4 ++-- .../schema/simple_quadrilateral.SimpleQuadrilateral.md | 4 ++-- .../python/docs/components/schema/some_object.SomeObject.md | 4 ++-- .../components/schema/special_model_name.SpecialModelName.md | 4 ++-- .../petstore/python/docs/components/schema/string.String.md | 4 ++-- .../components/schema/string_boolean_map.StringBooleanMap.md | 4 ++-- .../python/docs/components/schema/string_enum.StringEnum.md | 4 ++-- ...ring_enum_with_default_value.StringEnumWithDefaultValue.md | 4 ++-- .../schema/string_with_validation.StringWithValidation.md | 4 ++-- .../client/petstore/python/docs/components/schema/tag.Tag.md | 4 ++-- .../python/docs/components/schema/triangle.Triangle.md | 4 ++-- .../components/schema/triangle_interface.TriangleInterface.md | 4 ++-- .../petstore/python/docs/components/schema/user.User.md | 4 ++-- .../python/docs/components/schema/uuid_string.UUIDString.md | 4 ++-- .../petstore/python/docs/components/schema/whale.Whale.md | 4 ++-- .../petstore/python/docs/components/schema/zebra.Zebra.md | 4 ++-- 200 files changed, 326 insertions(+), 391 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 14cf80161c7..69d96dc1abb 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -186,5 +186,5 @@ No authorization required {{#each authMethods}}[{{{name}}}](../../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}} {{/unless}} -[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) {{> footer_links readmePath="../../../../" }} +[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) {{> footer_links readmePath="../../../../" endpointsLink=True}} {{/each}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars index f254929e5e6..c61da2f03b5 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars @@ -1 +1 @@ -[[Back to Endpoints]]({{readmePath}}README.md#Endpoints) [[Back to Component Schemas]]({{readmePath}}README.md#Component-Schemas) [[Back to README]]({{readmePath}}README.md) \ No newline at end of file +{{#if endpointsLink}}[[Back to Endpoints]]({{readmePath}}README.md#Endpoints) {{/if}}{{#if schemasLink}}[[Back to Component Schemas]]({{readmePath}}README.md#Component-Schemas) {{/if}}{{#if responsesLink}}[[Back to Component Responses]]({{readmePath}}README.md#Component-Responses) {{/if}}{{#if requestBodiesLink}}[[Back to Component RequestBodies]]({{readmePath}}README.md#Component-RequestBodies) {{/if}}[[Back to README]]({{readmePath}}README.md) \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars index 3ee2cd42844..9536875dd8f 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars @@ -1,10 +1,10 @@ {{#each models}} {{#with model}} + # {{packageName}}.{{modelPackage}}.{{classFilename}}.{{classname}} {{> schema_doc complexTypePrefix="" }} {{/with}} {{/each}} -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) {{> footer_links readmePath="../../../" schemasLink=True}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars index d9660725ff1..c2dc8ba4a25 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars @@ -6,7 +6,6 @@ {{/each}} {{#if refModule}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" }} - +[[Back to top]](#top) {{> footer_links readmePath="../../../" requestBodiesLink=True}} {{/if}} {{/with}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index 6ad209536a4..bf1df664d40 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -107,7 +107,6 @@ Key | Accessed Type | Description | Notes {{/if}} {{#if refModule}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" }} - +[[Back to top]](#top) {{> footer_links readmePath="../../../" responsesLink=True}} {{/if}} {{/with}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md index af1dffeb8a9..ae76a65c8d5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**call_123_test_special_tags**](another_fake_api/call_123_test_special_tags.md) | **patch** /another-fake/dummy | To test special tags -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md index 06b2acfd281..48036ecb5a4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**foo_get**](default_api/foo_get.md) | **get** /foo | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md index 733ad5e08cb..305906d9ddd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md @@ -39,4 +39,4 @@ Method | HTTP request | Description [**upload_file**](fake_api/upload_file.md) | **post** /fake/uploadFile | uploads a file using multipart/form-data [**upload_files**](fake_api/upload_files.md) | **post** /fake/uploadFiles | uploads files using multipart/form-data -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md index e0a67ef57d6..176469ef796 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**classname**](fake_classname_tags123_api/classname.md) | **patch** /fake_classname_test | To test class name in snake case -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md index 2667e5612e7..562edb1e694 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md @@ -15,4 +15,4 @@ Method | HTTP request | Description [**upload_file_with_required_file**](pet_api/upload_file_with_required_file.md) | **post** /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) [**upload_image**](pet_api/upload_image.md) | **post** /pet/{petId}/uploadImage | uploads an image -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md index e93f1e4fd2b..020d8476c37 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**get_order_by_id**](store_api/get_order_by_id.md) | **get** /store/order/{order_id} | Find purchase order by ID [**place_order**](store_api/place_order.md) | **post** /store/order | Place an order for a pet -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md index b23006a76e9..fc5c0ab315a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**logout_user**](user_api/logout_user.md) | **get** /user/logout | Logs out current logged in user session [**update_user**](user_api/update_user.md) | **put** /user/{username} | Updated user -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index b267d349316..c78f7cba63d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -71,5 +71,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index b81b255fa79..cf3656cfdd7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -61,5 +61,4 @@ Key | Input Type | Accessed Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index 4e9695af45b..822ec0f7c93 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -78,5 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index efa4f45b832..9f757418357 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -76,5 +76,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index 5a3394dd70b..df4cde081fa 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -76,5 +76,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index 02d4ecff43e..167494ef6ac 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -67,5 +67,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index 9bab74037c6..6e9d608d4bf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -92,5 +92,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index a929bd1bf75..db70bfca508 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -74,5 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index 420fb60ba6d..b505ab2b7c1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -87,5 +87,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index 94744c0ec99..9c3e1908d57 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -71,5 +71,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index 7d6bdf6e57f..042a4f01c0f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -74,5 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 02de3c66a27..3086840f262 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -78,5 +78,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index 5488285bebc..a3d0a39b467 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -116,5 +116,4 @@ headers | Unset | headers were not defined | [http_basic_test](../../../../README.md#http_basic_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 7bb705a0922..48ca7322aab 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -194,5 +194,4 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index 5da03264cf5..e231ed639fd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -56,5 +56,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index d9302a00045..c382c6f51b1 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -154,5 +154,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [bearer_test](../../../../README.md#bearer_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index ed01d8ff6d9..829d414d49d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -68,5 +68,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index bbe6f335bc4..ccae197b0fc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -237,5 +237,4 @@ str, | str, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index 5894ca9fbc9..a0418110914 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -71,5 +71,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 244a66f284d..863ed6da862 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -64,5 +64,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index 4112ea06c41..616101a6a40 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -76,5 +76,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index cb791f30789..ecf96bfe796 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -78,5 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index 2b28c1e2a97..45578d3e936 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -74,5 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index cf95ace290c..fbcf3fd6be5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -77,5 +77,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index cedf6d9dbe0..7d674d435f8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -78,5 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index e063d1d72fd..b2bb3afbdb2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -314,5 +314,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 552b8963fd0..8b7b05faa2e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -77,5 +77,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index 82156005a87..dc1b32a0e45 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -148,5 +148,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index e29a6f2c6ba..a0af35d1976 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -70,5 +70,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index 2dfd0c031da..4f0246cc12d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -50,5 +50,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index fca284d5494..b979a0f5326 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -74,5 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index af2bfd40294..00f8b654e56 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -74,5 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index c045b8b9333..6a6accdeffa 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -80,5 +80,4 @@ bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to download | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index 4f1e4a52908..c64548bf0b2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -85,5 +85,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index 120c482427f..b416849ed31 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -97,5 +97,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index 955c2b876a1..b99ce10944d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -82,5 +82,4 @@ Type | Description | Notes [api_key_query](../../../../README.md#api_key_query) -[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index b03015d2cdf..bc211735e82 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -152,5 +152,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index d66583137fd..84c7281d40f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -121,5 +121,4 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index fddd3072dc9..eb643476d39 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -189,5 +189,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index 4e557f7874a..a3c68e66625 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -189,5 +189,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index 1cac2daab5b..2120d9ffd62 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -117,5 +117,4 @@ headers | Unset | headers were not defined | [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index d135620c3ee..8686321607a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -165,5 +165,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index 78245f64a19..a0c5c774bd7 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -121,5 +121,4 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 211b42a353a..7e2559c5c4e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -128,5 +128,4 @@ Type | Description | Notes [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index d21f335c88a..5e071e1f38d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -115,5 +115,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index fccba57fe97..452827463c2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -85,5 +85,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index 6f26255649a..2fdb9ea22df 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -56,5 +56,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index 40d8814534e..ce9aedf457c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -106,5 +106,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index eb12db02630..2930da2a798 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -95,5 +95,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index 790a2ce2c73..7838167213f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -83,5 +83,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index ee92d339d1a..26c5d43254f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -76,5 +76,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index c053d67aee7..46cca15075f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -76,5 +76,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index bd53429d64d..14f79e422db 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -78,5 +78,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index 0a71bef2e07..a6201b24d58 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -104,5 +104,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index e8598373495..780a58ac05b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -128,5 +128,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 8fa30029cf7..7b94988e63e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -43,5 +43,4 @@ default | [.ApiResponse](../../../components/responses/.md) | Success No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index c09ef3a577d..db71fd6318c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -110,5 +110,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to Component Schemas]](../../../../README.md#Component-Schemas) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md index fd2a211b25c..2fcca50943a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md @@ -4,5 +4,4 @@ Type | Description | Notes [**Client**](../../components/schema/client.Client.md) | | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md index 1e5fba5bfe3..b9649135f0f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md @@ -9,5 +9,4 @@ Type | Description | Notes [**Pet**](../../components/schema/pet.Pet.md) | | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md index b8675ae3d81..58cec699668 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md @@ -10,5 +10,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md index c823dae3218..f1b08ee3bcb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -7,5 +7,4 @@ response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md index 02d12734980..d52658a8003 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md @@ -31,5 +31,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md index 091d494330d..1e77a9942ac 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -13,5 +13,4 @@ Type | Description | Notes [**ApiResponse**](../../components/schema/api_response.ApiResponse.md) | | -[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md index 38525a841ef..ec23b6afe9e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.abstract_step_message.AbstractStepMessage @@ -22,5 +23,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**AbstractStepMessage**](#AbstractStepMessage) | [**AbstractStepMessage**](#AbstractStepMessage) | [**AbstractStepMessage**](#AbstractStepMessage) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md index 0020723a9a3..1980bcad25f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.additional_properties_class.AdditionalPropertiesClass @@ -106,5 +107,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md index 4224845509a..90f6c75e2bc 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.additional_properties_validator.AdditionalPropertiesValidator @@ -50,5 +51,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md index e9b862de8c1..ee60f5cd97d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums @@ -23,5 +24,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**EnumClass**](enum_class.EnumClass.md) | [**EnumClass**](enum_class.EnumClass.md) | [**EnumClass**](enum_class.EnumClass.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md b/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md index 2f7b053fa92..83cde9a4f92 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.address.Address @@ -11,5 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | decimal.Decimal, int, | decimal.Decimal, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md index 09fb1b6e97b..f0d895ee88c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.animal.Animal @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **color** | str, | str, | | [optional] if omitted the server will use the default value of "red" **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md index c968aee5b79..24e914579e6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.animal_farm.AnimalFarm @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md index 70f71a878fa..029ed182fda 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.any_type_and_format.AnyTypeAndFormat @@ -20,5 +21,4 @@ Key | Input Type | Accessed Type | Description | Notes **float** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit float **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md index bdf4e0a3a22..f9542e11af9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.any_type_not_string.AnyTypeNotString @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md index 29fc2ec6435..dfc19e08d83 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.api_response.ApiResponse @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **message** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md index a38c0a2781f..21136cb0b46 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.apple.Apple @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **origin** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md index e257b055162..fb515e898f1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.apple_req.AppleReq @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **cultivar** | str, | str, | | **mealy** | bool, | BoolClass, | | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md index d2c8ea9cee3..86186f28095 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_holding_any_type.ArrayHoldingAnyType @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type can be stored here | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md index d1d3ad02571..0d28667be17 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_of_array_of_number_only.ArrayOfArrayOfNumberOnly @@ -36,5 +37,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md index 77669d1ffe5..6af71a0a41f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_of_enums.ArrayOfEnums @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**StringEnum**](string_enum.StringEnum.md) | [**StringEnum**](string_enum.StringEnum.md) | [**StringEnum**](string_enum.StringEnum.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md index d81b8e01843..b44e45e49c6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_of_number_only.ArrayOfNumberOnly @@ -24,5 +25,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md index c637f7895ed..bcde12305d8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_test.ArrayTest @@ -74,5 +75,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md index 43e067675c4..6023b61f44e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.array_with_validations_in_items.ArrayWithValidationsInItems @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md index 0412b4ffe3c..ff10eaf5aff 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.banana.Banana @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md index 11c5268af8d..663e4823b9d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.banana_req.BananaReq @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | **sweet** | bool, | BoolClass, | | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md b/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md index f26faccb7a5..f2675838893 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.bar.Bar @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | if omitted the server will use the default value of "bar" -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md index c645171e706..af7858681c5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.basque_pig.BasquePig @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["BasquePig", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md b/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md index b9577c04e2f..81dc9be41b4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.boolean.Boolean @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md index 5dd18d57b5b..cc5296dba1f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.boolean_enum.BooleanEnum @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | must be one of [True, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md index 3647fdb1369..012977cb4a4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.capitalization.Capitalization @@ -17,5 +18,4 @@ Key | Input Type | Accessed Type | Description | Notes **ATT_NAME** | str, | str, | Name of the pet | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md index 28603f5d605..6dd007e312c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.cat.Cat @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **declawed** | bool, | BoolClass, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md index 040fa43e9bf..110e90407b7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.category.Category @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md index 7cbaec55ce8..8b850a09c75 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.child_cat.ChildCat @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md index eaf3b894936..e332155edf1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.class_model.ClassModel @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **_class** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md index 3f76af87884..f8cf7221010 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.client.Client @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **client** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md index 6f345733b08..ba8e03a1e0c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.complex_quadrilateral.ComplexQuadrilateral @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | [optional] must be one of ["ComplexQuadrilateral", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md index 78f9dd94727..29848baba31 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations @@ -144,5 +145,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md index ec6d76fdcaa..a4212785b84 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_array.ComposedArray @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md index 5e941f1fc95..ca1babb62eb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_bool.ComposedBool @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md index 127468a07e2..8900ed709f6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_none.ComposedNone @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md index 5ac3ed9bbbf..b7c50c53fdb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_number.ComposedNumber @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md index 0253eb326d8..2905afcd344 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_object.ComposedObject @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md index 5746907f57e..907928c438b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_one_of_different_types.ComposedOneOfDifferentTypes @@ -60,5 +61,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md index 69203f721fa..45782f9f655 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.composed_string.ComposedString @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md b/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md index fee63c088c0..1addd7a4049 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.currency.Currency @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["eur", "usd", ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md index a085e4b2303..4d29b0a3e4b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.danish_pig.DanishPig @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["DanishPig", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md index 63bb9f9480e..2fb675d4670 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.date_time_test.DateTimeTest @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | if omitted the server will use the default value of 2010-01-01T10:10:10.000111+01:00value must conform to RFC-3339 date-time -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md index e2146bf8453..cf57e7a49bc 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.date_time_with_validations.DateTimeWithValidations @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md index 922f3d688e0..7ba12ef22d1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.date_with_validations.DateWithValidations @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md b/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md index 1e0d2e6c438..08d997c3e4a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.decimal_payload.DecimalPayload @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | value must be numeric and storable in decimal.Decimal -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md index 84c7b8e91ba..476cd41bc02 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.dog.Dog @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **breed** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md b/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md index e740e74dcce..30fffd4f02c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.drawing.Drawing @@ -27,5 +28,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Shape**](shape.Shape.md) | [**Shape**](shape.Shape.md) | [**Shape**](shape.Shape.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md index a5e96f94631..09df49b4bab 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.enum_arrays.EnumArrays @@ -25,5 +26,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | str, | str, | | must be one of ["fish", "crab", ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md index e7294bd0320..fa9c9b9bdff 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.enum_class.EnumClass @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["_abc", "-efg", "(xyz)", "COUNT_1M", "COUNT_50M", ] if omitted the server will use the default value of "-efg" -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md index 3a5a2d6d207..1859aa80786 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.enum_test.EnumTest @@ -20,5 +21,4 @@ Key | Input Type | Accessed Type | Description | Notes **IntegerEnumOneValue** | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md index 2bb10ce6175..af1cf99b870 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.equilateral_triangle.EquilateralTriangle @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["EquilateralTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md index 8c38879eed8..5201889925c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.file.File @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **sourceURI** | str, | str, | Test capitalization | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md index 652dab7210c..b8b193d1156 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.file_schema_test_class.FileSchemaTestClass @@ -25,5 +26,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**File**](file.File.md) | [**File**](file.File.md) | [**File**](file.File.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md index d4afd48281e..8492c7a6977 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.foo.Foo @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | [**Bar**](bar.Bar.md) | [**Bar**](bar.Bar.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md index 03f6912f027..99c10d52b84 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.format_test.FormatTest @@ -44,5 +45,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md index ac56c9c6260..304c7feddaa 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.from_schema.FromSchema @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md index bc6cd090f8b..16cb592e0cf 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.fruit.Fruit @@ -19,5 +20,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md index 340e13a6679..abb2573b352 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.fruit_req.FruitReq @@ -21,5 +22,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md index 6ebbed31a06..ff2c1c71ddd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.gm_fruit.GmFruit @@ -19,5 +20,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md index 822b1216a26..8f4cdd449b5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.grandparent_animal.GrandparentAnimal @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **pet_type** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md index b2c438e8a66..ec104983500 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.has_only_read_only.HasOnlyReadOnly @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md index cb96186778f..3988e4e5c64 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.health_check_result.HealthCheckResult @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **NullableMessage** | None, str, | NoneClass, str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md index aee54a6661e..48e1ae3a325 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_enum.IntegerEnum @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md index 90928c17086..dc2d298d1fb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_enum_big.IntegerEnumBig @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [10, 11, 12, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md index a2207e06c0b..03b1fe6273e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_enum_one_value.IntegerEnumOneValue @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md index 30a28a943e9..c188329e695 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_enum_with_default_value.IntegerEnumWithDefaultValue @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] if omitted the server will use the default value of 0 -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md index 1e4cffb88de..327f8cb2c7a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_max10.IntegerMax10 @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md index c7c348f9832..982744d762e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.integer_min15.IntegerMin15 @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md index 629d45721a8..67fe56565e2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.isosceles_triangle.IsoscelesTriangle @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["IsoscelesTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md index f662ceb6f58..280a330b16b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.json_patch_request.JSONPatchRequest @@ -26,5 +27,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md index c0b3440c747..40d0c9db206 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **path** | str, | str, | A JSON Pointer path. | **value** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value to add, replace or test. | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md index 5dc169f3535..2d18af644fa 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.json_patch_request_move_copy.JSONPatchRequestMoveCopy @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **path** | str, | str, | A JSON Pointer path. | **from** | str, | str, | A JSON Pointer path. | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md index 6ee37a5e41a..72e8a021cc5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.json_patch_request_remove.JSONPatchRequestRemove @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **op** | str, | str, | The operation to perform. | must be one of ["remove", ] **path** | str, | str, | A JSON Pointer path. | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md index 33e7844f834..ce8af053fbc 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.mammal.Mammal @@ -14,5 +15,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Zebra**](zebra.Zebra.md) | [**Zebra**](zebra.Zebra.md) | [**Zebra**](zebra.Zebra.md) | | [**Pig**](pig.Pig.md) | [**Pig**](pig.Pig.md) | [**Pig**](pig.Pig.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md index 54986056d29..0b6f13a04bd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.map_test.MapTest @@ -63,5 +64,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md index eb2784242f1..1562f4c29bf 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md b/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md index ef20d589ba8..b1dedaf99bb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.model200_response.Model200Response @@ -15,5 +16,4 @@ Key | Input Type | Accessed Type | Description | Notes **class** | str, | str, | this is a reserved python keyword | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md b/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md index 81f0ed499d8..78256fb901a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.model_return.ModelReturn @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **return** | decimal.Decimal, int, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit integer **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md index ad5577a28ed..e08321a1760 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.money.Money @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **currency** | [**Currency**](currency.Currency.md) | [**Currency**](currency.Currency.md) | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md index dd72eaf95de..f9cd4413d6c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.name.Name @@ -16,5 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **property** | str, | str, | this is a reserved python keyword | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md index 7e555e36479..12a44f76dc7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.no_additional_properties.NoAdditionalProperties @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer **petId** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md index 6b9c32dc700..66aae696778 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.nullable_class.NullableClass @@ -144,5 +145,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md index 51f63f1d3c2..5246b72f79d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.nullable_shape.NullableShape @@ -23,5 +24,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md index 29ada8e110c..6e71568b554 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.nullable_string.NullableString @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, str, | NoneClass, str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md b/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md index d3396615fb3..12d21ca5a30 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.number.Number @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md index 787d6a79b5a..de3109d6e5e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.number_only.NumberOnly @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **JustNumber** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md index 96a127e36a8..aa7304922a5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.number_with_validations.NumberWithValidations @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md index 17d03bfe01b..8b6b5ad00ed 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_interface.ObjectInterface @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, | frozendict.frozendict, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md index d4f54564b60..e2adfaa3e9b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **arg** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md index 31161e4d56d..b7895a1f41b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_model_with_ref_props.ObjectModelWithRefProps @@ -16,5 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **myBoolean** | [**Boolean**](boolean.Boolean.md) | [**Boolean**](boolean.Boolean.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md index 959da66ed9c..d14db1ea279 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp @@ -27,5 +28,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md index 33a21467965..d4f13444bee 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_decimal_properties.ObjectWithDecimalProperties @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **cost** | [**Money**](money.Money.md) | [**Money**](money.Money.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md index dffa7e28d3e..1d1c3c3c90f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps @@ -16,5 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **123Number** | decimal.Decimal, int, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md index 3178e57de97..b3858457214 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_inline_composition_property.ObjectWithInlineCompositionProperty @@ -32,5 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md index d246859b3ca..9070bc8df15 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **from** | [**FromSchema**](from_schema.FromSchema.md) | [**FromSchema**](from_schema.FromSchema.md) | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md index d47a95c9018..dc6e3e9552d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_optional_test_prop.ObjectWithOptionalTestProp @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **test** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md index 216130fc76b..94604fc9889 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.object_with_validations.ObjectWithValidations @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, | frozendict.frozendict, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md index 4c2370e95b2..bc3854984ab 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.order.Order @@ -17,5 +18,4 @@ Key | Input Type | Accessed Type | Description | Notes **complete** | bool, | BoolClass, | | [optional] if omitted the server will use the default value of False **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md b/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md index c51e4a91426..16874a0f93b 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.parent_pet.ParentPet @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md index 1b1c829dd5f..183d7c1b552 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.pet.Pet @@ -43,5 +44,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Tag**](tag.Tag.md) | [**Tag**](tag.Tag.md) | [**Tag**](tag.Tag.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md index b48d269c0d5..c433fddd899 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.pig.Pig @@ -13,5 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**BasquePig**](basque_pig.BasquePig.md) | [**BasquePig**](basque_pig.BasquePig.md) | [**BasquePig**](basque_pig.BasquePig.md) | | [**DanishPig**](danish_pig.DanishPig.md) | [**DanishPig**](danish_pig.DanishPig.md) | [**DanishPig**](danish_pig.DanishPig.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md index d6c9bfee82c..f829442493d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.player.Player @@ -15,5 +16,4 @@ Key | Input Type | Accessed Type | Description | Notes **enemyPlayer** | [**Player**](#Player) | [**Player**](#Player) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md index e026392c4ca..821cd2cf6c2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.quadrilateral.Quadrilateral @@ -13,5 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md index 64180c23919..d7714be96cb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.quadrilateral_interface.QuadrilateralInterface @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md index b07954b4e58..021e7af9544 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.read_only_first.ReadOnlyFirst @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **baz** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md index 46d4938849d..1e2e8671743 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.scalene_triangle.ScaleneTriangle @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["ScaleneTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md index be143e4ba94..be2426d524d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.self_referencing_array_model.SelfReferencingArrayModel @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md index 8d82a85e32f..7481bba430a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.self_referencing_object_model.SelfReferencingObjectModel @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **selfRef** | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | | [optional] **any_string_name** | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md index 72837b266ba..60ffe7d3883 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.shape.Shape @@ -13,5 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Triangle**](triangle.Triangle.md) | [**Triangle**](triangle.Triangle.md) | [**Triangle**](triangle.Triangle.md) | | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md index 1ea4c82de28..694d4c933a3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.shape_or_null.ShapeOrNull @@ -23,5 +24,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md index d07b7660fb7..24c3f59f979 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.simple_quadrilateral.SimpleQuadrilateral @@ -26,5 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | [optional] must be one of ["SimpleQuadrilateral", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md index 2861bc0c29e..2a6c9640e3a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.some_object.SomeObject @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**ObjectInterface**](object_interface.ObjectInterface.md) | [**ObjectInterface**](object_interface.ObjectInterface.md) | [**ObjectInterface**](object_interface.ObjectInterface.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md index 70bd86cb94e..d45bec46990 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.special_model_name.SpecialModelName @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **a** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md b/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md index c21f4ceed06..f0d429b9e4f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.string.String @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md index e6a7e2a1efd..384f01c1a97 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.string_boolean_map.StringBooleanMap @@ -11,5 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md index b868db4b637..a1d8c637e2d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.string_enum.StringEnum @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, str, | NoneClass, str, | | must be one of ["placed", "approved", "delivered", "single quoted", "multiple\nlines", "double quote \n with newline", None, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md index 51dc3db85e2..068fa25eb45 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.string_enum_with_default_value.StringEnumWithDefaultValue @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["placed", "approved", "delivered", ] if omitted the server will use the default value of "placed" -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md index bc73c1c9a4e..4ded7993d95 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.string_with_validation.StringWithValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md index 8942af9ac2c..7939d0aec65 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.tag.Tag @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md index 1ff6bc48413..89470916762 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.triangle.Triangle @@ -14,5 +15,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md index c21f9de71bb..f9d4d6fe598 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.triangle_interface.TriangleInterface @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md index dda7c74e4d7..ae7f5126960 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.user.User @@ -64,5 +65,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md b/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md index be887f7226d..9cba3edb9d0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.uuid_string.UUIDString @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, uuid.UUID, | str, | | value must be a uuid -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md index fa3d01a4e75..3ecef4dbc03 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.whale.Whale @@ -14,5 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **hasTeeth** | bool, | BoolClass, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md index 87fac9db235..b9970e8d742 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md @@ -1,3 +1,4 @@ + # petstore_api.components.schema.zebra.Zebra @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **type** | str, | str, | | [optional] must be one of ["plains", "mountain", "grevys", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file From 3c5bdb97cf8639602a57ae021c05f8698cf1f840 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 11:54:34 -0800 Subject: [PATCH 36/44] Fixes links --- .../src/main/resources/python/api_doc.handlebars | 2 +- .../src/main/resources/python/endpoint_doc.handlebars | 2 +- .../src/main/resources/python/model_doc.handlebars | 2 +- .../src/main/resources/python/request_body_doc.handlebars | 2 +- .../src/main/resources/python/response_doc.handlebars | 2 +- .../client/petstore/python/docs/apis/tags/AnotherFakeApi.md | 2 +- .../client/petstore/python/docs/apis/tags/DefaultApi.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/FakeApi.md | 2 +- .../petstore/python/docs/apis/tags/FakeClassnameTags123Api.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/PetApi.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/StoreApi.md | 2 +- .../openapi3/client/petstore/python/docs/apis/tags/UserApi.md | 2 +- .../apis/tags/another_fake_api/call_123_test_special_tags.md | 2 +- .../petstore/python/docs/apis/tags/default_api/foo_get.md | 2 +- .../tags/fake_api/additional_properties_with_array_of_enums.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/array_model.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/array_of_enums.md | 2 +- .../python/docs/apis/tags/fake_api/body_with_file_schema.md | 2 +- .../python/docs/apis/tags/fake_api/body_with_query_params.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/boolean.md | 2 +- .../python/docs/apis/tags/fake_api/case_sensitive_params.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/client_model.md | 2 +- .../docs/apis/tags/fake_api/composed_one_of_different_types.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/delete_coffee.md | 2 +- .../python/docs/apis/tags/fake_api/endpoint_parameters.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/enum_parameters.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/fake_health_get.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/group_parameters.md | 2 +- .../docs/apis/tags/fake_api/inline_additional_properties.md | 2 +- .../python/docs/apis/tags/fake_api/inline_composition.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/json_form_data.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/json_patch.md | 2 +- .../python/docs/apis/tags/fake_api/json_with_charset.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/mammal.md | 2 +- .../python/docs/apis/tags/fake_api/number_with_validations.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/object_in_query.md | 2 +- .../docs/apis/tags/fake_api/object_model_with_ref_props.md | 2 +- .../python/docs/apis/tags/fake_api/parameter_collisions.md | 2 +- .../apis/tags/fake_api/query_param_with_json_content_type.md | 2 +- .../apis/tags/fake_api/query_parameter_collection_format.md | 2 +- .../python/docs/apis/tags/fake_api/ref_object_in_query.md | 2 +- .../python/docs/apis/tags/fake_api/response_without_schema.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/string.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/string_enum.md | 2 +- .../python/docs/apis/tags/fake_api/upload_download_file.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/upload_file.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/upload_files.md | 2 +- .../docs/apis/tags/fake_classname_tags123_api/classname.md | 2 +- .../client/petstore/python/docs/apis/tags/pet_api/add_pet.md | 2 +- .../client/petstore/python/docs/apis/tags/pet_api/delete_pet.md | 2 +- .../python/docs/apis/tags/pet_api/find_pets_by_status.md | 2 +- .../petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md | 2 +- .../petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md | 2 +- .../client/petstore/python/docs/apis/tags/pet_api/update_pet.md | 2 +- .../python/docs/apis/tags/pet_api/update_pet_with_form.md | 2 +- .../docs/apis/tags/pet_api/upload_file_with_required_file.md | 2 +- .../petstore/python/docs/apis/tags/pet_api/upload_image.md | 2 +- .../petstore/python/docs/apis/tags/store_api/delete_order.md | 2 +- .../petstore/python/docs/apis/tags/store_api/get_inventory.md | 2 +- .../petstore/python/docs/apis/tags/store_api/get_order_by_id.md | 2 +- .../petstore/python/docs/apis/tags/store_api/place_order.md | 2 +- .../petstore/python/docs/apis/tags/user_api/create_user.md | 2 +- .../docs/apis/tags/user_api/create_users_with_array_input.md | 2 +- .../docs/apis/tags/user_api/create_users_with_list_input.md | 2 +- .../petstore/python/docs/apis/tags/user_api/delete_user.md | 2 +- .../petstore/python/docs/apis/tags/user_api/get_user_by_name.md | 2 +- .../petstore/python/docs/apis/tags/user_api/login_user.md | 2 +- .../petstore/python/docs/apis/tags/user_api/logout_user.md | 2 +- .../petstore/python/docs/apis/tags/user_api/update_user.md | 2 +- .../docs/components/request_bodies/client_request_body.md | 2 +- .../python/docs/components/request_bodies/pet_request_body.md | 2 +- .../docs/components/request_bodies/user_array_request_body.md | 2 +- .../components/responses/success_description_only_response.md | 2 +- .../responses/success_inline_content_and_header_response.md | 2 +- .../responses/success_with_json_api_response_response.md | 2 +- .../schema/abstract_step_message.AbstractStepMessage.md | 2 +- .../additional_properties_class.AdditionalPropertiesClass.md | 2 +- ...tional_properties_validator.AdditionalPropertiesValidator.md | 2 +- ..._with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md | 2 +- .../petstore/python/docs/components/schema/address.Address.md | 2 +- .../petstore/python/docs/components/schema/animal.Animal.md | 2 +- .../python/docs/components/schema/animal_farm.AnimalFarm.md | 2 +- .../components/schema/any_type_and_format.AnyTypeAndFormat.md | 2 +- .../components/schema/any_type_not_string.AnyTypeNotString.md | 2 +- .../python/docs/components/schema/api_response.ApiResponse.md | 2 +- .../petstore/python/docs/components/schema/apple.Apple.md | 2 +- .../python/docs/components/schema/apple_req.AppleReq.md | 2 +- .../schema/array_holding_any_type.ArrayHoldingAnyType.md | 2 +- .../array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md | 2 +- .../docs/components/schema/array_of_enums.ArrayOfEnums.md | 2 +- .../components/schema/array_of_number_only.ArrayOfNumberOnly.md | 2 +- .../python/docs/components/schema/array_test.ArrayTest.md | 2 +- ...ray_with_validations_in_items.ArrayWithValidationsInItems.md | 2 +- .../petstore/python/docs/components/schema/banana.Banana.md | 2 +- .../python/docs/components/schema/banana_req.BananaReq.md | 2 +- .../client/petstore/python/docs/components/schema/bar.Bar.md | 2 +- .../python/docs/components/schema/basque_pig.BasquePig.md | 2 +- .../petstore/python/docs/components/schema/boolean.Boolean.md | 2 +- .../python/docs/components/schema/boolean_enum.BooleanEnum.md | 2 +- .../docs/components/schema/capitalization.Capitalization.md | 2 +- .../client/petstore/python/docs/components/schema/cat.Cat.md | 2 +- .../petstore/python/docs/components/schema/category.Category.md | 2 +- .../python/docs/components/schema/child_cat.ChildCat.md | 2 +- .../python/docs/components/schema/class_model.ClassModel.md | 2 +- .../petstore/python/docs/components/schema/client.Client.md | 2 +- .../schema/complex_quadrilateral.ComplexQuadrilateral.md | 2 +- ...s_no_validations.ComposedAnyOfDifferentTypesNoValidations.md | 2 +- .../docs/components/schema/composed_array.ComposedArray.md | 2 +- .../python/docs/components/schema/composed_bool.ComposedBool.md | 2 +- .../python/docs/components/schema/composed_none.ComposedNone.md | 2 +- .../docs/components/schema/composed_number.ComposedNumber.md | 2 +- .../docs/components/schema/composed_object.ComposedObject.md | 2 +- ...mposed_one_of_different_types.ComposedOneOfDifferentTypes.md | 2 +- .../docs/components/schema/composed_string.ComposedString.md | 2 +- .../petstore/python/docs/components/schema/currency.Currency.md | 2 +- .../python/docs/components/schema/danish_pig.DanishPig.md | 2 +- .../docs/components/schema/date_time_test.DateTimeTest.md | 2 +- .../date_time_with_validations.DateTimeWithValidations.md | 2 +- .../schema/date_with_validations.DateWithValidations.md | 2 +- .../docs/components/schema/decimal_payload.DecimalPayload.md | 2 +- .../client/petstore/python/docs/components/schema/dog.Dog.md | 2 +- .../petstore/python/docs/components/schema/drawing.Drawing.md | 2 +- .../python/docs/components/schema/enum_arrays.EnumArrays.md | 2 +- .../python/docs/components/schema/enum_class.EnumClass.md | 2 +- .../python/docs/components/schema/enum_test.EnumTest.md | 2 +- .../schema/equilateral_triangle.EquilateralTriangle.md | 2 +- .../client/petstore/python/docs/components/schema/file.File.md | 2 +- .../schema/file_schema_test_class.FileSchemaTestClass.md | 2 +- .../client/petstore/python/docs/components/schema/foo.Foo.md | 2 +- .../python/docs/components/schema/format_test.FormatTest.md | 2 +- .../python/docs/components/schema/from_schema.FromSchema.md | 2 +- .../petstore/python/docs/components/schema/fruit.Fruit.md | 2 +- .../python/docs/components/schema/fruit_req.FruitReq.md | 2 +- .../petstore/python/docs/components/schema/gm_fruit.GmFruit.md | 2 +- .../components/schema/grandparent_animal.GrandparentAnimal.md | 2 +- .../components/schema/has_only_read_only.HasOnlyReadOnly.md | 2 +- .../components/schema/health_check_result.HealthCheckResult.md | 2 +- .../python/docs/components/schema/integer_enum.IntegerEnum.md | 2 +- .../docs/components/schema/integer_enum_big.IntegerEnumBig.md | 2 +- .../schema/integer_enum_one_value.IntegerEnumOneValue.md | 2 +- ...teger_enum_with_default_value.IntegerEnumWithDefaultValue.md | 2 +- .../python/docs/components/schema/integer_max10.IntegerMax10.md | 2 +- .../python/docs/components/schema/integer_min15.IntegerMin15.md | 2 +- .../components/schema/isosceles_triangle.IsoscelesTriangle.md | 2 +- .../components/schema/json_patch_request.JSONPatchRequest.md | 2 +- ...h_request_add_replace_test.JSONPatchRequestAddReplaceTest.md | 2 +- .../json_patch_request_move_copy.JSONPatchRequestMoveCopy.md | 2 +- .../schema/json_patch_request_remove.JSONPatchRequestRemove.md | 2 +- .../petstore/python/docs/components/schema/mammal.Mammal.md | 2 +- .../petstore/python/docs/components/schema/map_test.MapTest.md | 2 +- ...perties_class.MixedPropertiesAndAdditionalPropertiesClass.md | 2 +- .../components/schema/model200_response.Model200Response.md | 2 +- .../python/docs/components/schema/model_return.ModelReturn.md | 2 +- .../petstore/python/docs/components/schema/money.Money.md | 2 +- .../client/petstore/python/docs/components/schema/name.Name.md | 2 +- .../schema/no_additional_properties.NoAdditionalProperties.md | 2 +- .../docs/components/schema/nullable_class.NullableClass.md | 2 +- .../docs/components/schema/nullable_shape.NullableShape.md | 2 +- .../docs/components/schema/nullable_string.NullableString.md | 2 +- .../petstore/python/docs/components/schema/number.Number.md | 2 +- .../python/docs/components/schema/number_only.NumberOnly.md | 2 +- .../schema/number_with_validations.NumberWithValidations.md | 2 +- .../docs/components/schema/object_interface.ObjectInterface.md | 2 +- ...g_and_args_properties.ObjectModelWithArgAndArgsProperties.md | 2 +- .../object_model_with_ref_props.ObjectModelWithRefProps.md | 2 +- ...t_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md | 2 +- ...bject_with_decimal_properties.ObjectWithDecimalProperties.md | 2 +- ...h_difficultly_named_props.ObjectWithDifficultlyNamedProps.md | 2 +- ..._composition_property.ObjectWithInlineCompositionProperty.md | 2 +- ...ed_refed_properties.ObjectWithInvalidNamedRefedProperties.md | 2 +- ...object_with_optional_test_prop.ObjectWithOptionalTestProp.md | 2 +- .../schema/object_with_validations.ObjectWithValidations.md | 2 +- .../petstore/python/docs/components/schema/order.Order.md | 2 +- .../python/docs/components/schema/parent_pet.ParentPet.md | 2 +- .../client/petstore/python/docs/components/schema/pet.Pet.md | 2 +- .../client/petstore/python/docs/components/schema/pig.Pig.md | 2 +- .../petstore/python/docs/components/schema/player.Player.md | 2 +- .../docs/components/schema/quadrilateral.Quadrilateral.md | 2 +- .../schema/quadrilateral_interface.QuadrilateralInterface.md | 2 +- .../docs/components/schema/read_only_first.ReadOnlyFirst.md | 2 +- .../docs/components/schema/scalene_triangle.ScaleneTriangle.md | 2 +- .../self_referencing_array_model.SelfReferencingArrayModel.md | 2 +- .../self_referencing_object_model.SelfReferencingObjectModel.md | 2 +- .../petstore/python/docs/components/schema/shape.Shape.md | 2 +- .../python/docs/components/schema/shape_or_null.ShapeOrNull.md | 2 +- .../schema/simple_quadrilateral.SimpleQuadrilateral.md | 2 +- .../python/docs/components/schema/some_object.SomeObject.md | 2 +- .../components/schema/special_model_name.SpecialModelName.md | 2 +- .../petstore/python/docs/components/schema/string.String.md | 2 +- .../components/schema/string_boolean_map.StringBooleanMap.md | 2 +- .../python/docs/components/schema/string_enum.StringEnum.md | 2 +- ...string_enum_with_default_value.StringEnumWithDefaultValue.md | 2 +- .../schema/string_with_validation.StringWithValidation.md | 2 +- .../client/petstore/python/docs/components/schema/tag.Tag.md | 2 +- .../petstore/python/docs/components/schema/triangle.Triangle.md | 2 +- .../components/schema/triangle_interface.TriangleInterface.md | 2 +- .../client/petstore/python/docs/components/schema/user.User.md | 2 +- .../python/docs/components/schema/uuid_string.UUIDString.md | 2 +- .../petstore/python/docs/components/schema/whale.Whale.md | 2 +- .../petstore/python/docs/components/schema/zebra.Zebra.md | 2 +- 200 files changed, 200 insertions(+), 200 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars index ae3dcad08e4..11864d26a3b 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/api_doc.handlebars @@ -12,4 +12,4 @@ Method | HTTP request | Description {{/each}} {{/with}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" }} +[[Back to top]](#top) {{> footer_links readmePath="../../../" endpointsLink=true }} diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 69d96dc1abb..3a6fc3f98bf 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars @@ -186,5 +186,5 @@ No authorization required {{#each authMethods}}[{{{name}}}](../../../../README.md#{{{name}}}){{#unless @last}}, {{/unless}}{{/each}} {{/unless}} -[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) {{> footer_links readmePath="../../../../" endpointsLink=True}} +[[Back to top]](#top) [[Back to API]](../{{tag.className}}.md) {{> footer_links readmePath="../../../../" endpointsLink=true}} {{/each}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars index 9536875dd8f..254404774da 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/model_doc.handlebars @@ -7,4 +7,4 @@ {{/with}} {{/each}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" schemasLink=True}} \ No newline at end of file +[[Back to top]](#top) {{> footer_links readmePath="../../../" schemasLink=true}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars index c2dc8ba4a25..44325ce8a7a 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars @@ -6,6 +6,6 @@ {{/each}} {{#if refModule}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" requestBodiesLink=True}} +[[Back to top]](#top) {{> footer_links readmePath="../../../" requestBodiesLink=true}} {{/if}} {{/with}} \ No newline at end of file diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars index bf1df664d40..c6d30092b96 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -107,6 +107,6 @@ Key | Accessed Type | Description | Notes {{/if}} {{#if refModule}} -[[Back to top]](#top) {{> footer_links readmePath="../../../" responsesLink=True}} +[[Back to top]](#top) {{> footer_links readmePath="../../../" responsesLink=true}} {{/if}} {{/with}} \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md index ae76a65c8d5..2954720b3cd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**call_123_test_special_tags**](another_fake_api/call_123_test_special_tags.md) | **patch** /another-fake/dummy | To test special tags -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md index 48036ecb5a4..2dc6e2fa56f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**foo_get**](default_api/foo_get.md) | **get** /foo | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md index 305906d9ddd..05dd908230d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md @@ -39,4 +39,4 @@ Method | HTTP request | Description [**upload_file**](fake_api/upload_file.md) | **post** /fake/uploadFile | uploads a file using multipart/form-data [**upload_files**](fake_api/upload_files.md) | **post** /fake/uploadFiles | uploads files using multipart/form-data -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md index 176469ef796..1c6435e4375 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**classname**](fake_classname_tags123_api/classname.md) | **patch** /fake_classname_test | To test class name in snake case -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md index 562edb1e694..46123fa1be9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md @@ -15,4 +15,4 @@ Method | HTTP request | Description [**upload_file_with_required_file**](pet_api/upload_file_with_required_file.md) | **post** /fake/{petId}/uploadImageWithRequiredFile | uploads an image (required) [**upload_image**](pet_api/upload_image.md) | **post** /pet/{petId}/uploadImage | uploads an image -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md index 020d8476c37..8eb393b5995 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**get_order_by_id**](store_api/get_order_by_id.md) | **get** /store/order/{order_id} | Find purchase order by ID [**place_order**](store_api/place_order.md) | **post** /store/order | Place an order for a pet -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md index fc5c0ab315a..9672d8ce0b4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**logout_user**](user_api/logout_user.md) | **get** /user/logout | Logs out current logged in user session [**update_user**](user_api/update_user.md) | **put** /user/{username} | Updated user -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md index c78f7cba63d..189c789acdb 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/another_fake_api/call_123_test_special_tags.md @@ -71,4 +71,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../AnotherFakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md index cf3656cfdd7..7757a0c52af 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/default_api/foo_get.md @@ -61,4 +61,4 @@ Key | Input Type | Accessed Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index 822ec0f7c93..a611b3ca45f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -78,4 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index 9f757418357..fe370a94db9 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -76,4 +76,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index df4cde081fa..740d1ffded5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -76,4 +76,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index 167494ef6ac..82021f98735 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -67,4 +67,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index 6e9d608d4bf..154eb4301c5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -92,4 +92,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index db70bfca508..866578f3aa6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -74,4 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md index b505ab2b7c1..7f0963a9c4c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/case_sensitive_params.md @@ -87,4 +87,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md index 9c3e1908d57..b8d510a9ea4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/client_model.md @@ -71,4 +71,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index 042a4f01c0f..28eb1443bba 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -74,4 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md index 3086840f262..e5d2b07c285 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/delete_coffee.md @@ -78,4 +78,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md index a3d0a39b467..d46edf0108a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/endpoint_parameters.md @@ -116,4 +116,4 @@ headers | Unset | headers were not defined | [http_basic_test](../../../../README.md#http_basic_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md index 48ca7322aab..9ae1a766cf3 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/enum_parameters.md @@ -194,4 +194,4 @@ dict, frozendict.frozendict, | frozendict.frozendict, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md index e231ed639fd..4d3f75d6198 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/fake_health_get.md @@ -56,4 +56,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md index c382c6f51b1..c5cc1917979 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/group_parameters.md @@ -154,4 +154,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [bearer_test](../../../../README.md#bearer_test) -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md index 829d414d49d..11dd09507d4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_additional_properties.md @@ -68,4 +68,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md index ccae197b0fc..b8d42bdb5bb 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/inline_composition.md @@ -237,4 +237,4 @@ str, | str, | | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md index a0418110914..7fa69cea3fe 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_form_data.md @@ -71,4 +71,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 863ed6da862..8b23b59b117 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -64,4 +64,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md index 616101a6a40..7fc3fc75799 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_with_charset.md @@ -76,4 +76,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index ecf96bfe796..7897bd0b9f2 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -78,4 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index 45578d3e936..cc1fa456d74 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -74,4 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md index fbcf3fd6be5..a02c824ced8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_in_query.md @@ -77,4 +77,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index 7d674d435f8..50a4def7c7e 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -78,4 +78,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md index b2bb3afbdb2..19b61a43890 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/parameter_collisions.md @@ -314,4 +314,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md index 8b7b05faa2e..29dd9b7fe3d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_param_with_json_content_type.md @@ -77,4 +77,4 @@ dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md index dc1b32a0e45..1168a6d0325 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/query_parameter_collection_format.md @@ -148,4 +148,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md index a0af35d1976..317becb3618 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/ref_object_in_query.md @@ -70,4 +70,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md index 4f0246cc12d..a0e7ff50acd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/response_without_schema.md @@ -50,4 +50,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index b979a0f5326..4b71cab1cd4 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -74,4 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index 00f8b654e56..d09c7ee798c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -74,4 +74,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md index 6a6accdeffa..08a8ab49441 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_download_file.md @@ -80,4 +80,4 @@ bytes, io.FileIO, io.BufferedReader, | bytes, FileIO, | file to download | No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md index c64548bf0b2..76bf5913145 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_file.md @@ -85,4 +85,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md index b416849ed31..4c5fafc1e84 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/upload_files.md @@ -97,4 +97,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md index b99ce10944d..7cfe2641784 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_classname_tags123_api/classname.md @@ -82,4 +82,4 @@ Type | Description | Notes [api_key_query](../../../../README.md#api_key_query) -[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../FakeClassnameTags123Api.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md index bc211735e82..97188dd13fa 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/add_pet.md @@ -152,4 +152,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md index 84c7281d40f..64f28ac49a5 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/delete_pet.md @@ -121,4 +121,4 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md index eb643476d39..caff44c4711 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_status.md @@ -189,4 +189,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md index a3c68e66625..13e9ee7be7a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/find_pets_by_tags.md @@ -189,4 +189,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md index 2120d9ffd62..cc660405170 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/get_pet_by_id.md @@ -117,4 +117,4 @@ headers | Unset | headers were not defined | [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md index 8686321607a..ced39eab6e8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet.md @@ -165,4 +165,4 @@ headers | Unset | headers were not defined | [http_signature_test](../../../../README.md#http_signature_test), [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md index a0c5c774bd7..071d7dfdb9a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/update_pet_with_form.md @@ -121,4 +121,4 @@ headers | Unset | headers were not defined | [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md index 7e2559c5c4e..b3c207ec7d6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_file_with_required_file.md @@ -128,4 +128,4 @@ Type | Description | Notes [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md index 5e071e1f38d..e2f8eda2d33 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/pet_api/upload_image.md @@ -115,4 +115,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [petstore_auth](../../../../README.md#petstore_auth) -[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../PetApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md index 452827463c2..a95332b806a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/delete_order.md @@ -85,4 +85,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md index 2fdb9ea22df..5d36bf3f70d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_inventory.md @@ -56,4 +56,4 @@ n/a | api_client.ApiResponseWithoutDeserialization | When skip_deserialization i [api_key](../../../../README.md#api_key) -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md index ce9aedf457c..ba337ef610d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/get_order_by_id.md @@ -106,4 +106,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 2930da2a798..9aca11680bc 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -95,4 +95,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../StoreApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index 7838167213f..c8a97ec65b8 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -83,4 +83,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md index 26c5d43254f..27f8464a6d6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_array_input.md @@ -76,4 +76,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md index 46cca15075f..0a94118be0f 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_users_with_list_input.md @@ -76,4 +76,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md index 14f79e422db..a7734456a76 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/delete_user.md @@ -78,4 +78,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md index a6201b24d58..9ec603ee493 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/get_user_by_name.md @@ -104,4 +104,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md index 780a58ac05b..0a6679f268d 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/login_user.md @@ -128,4 +128,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md index 7b94988e63e..5edc828571a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/logout_user.md @@ -43,4 +43,4 @@ default | [.ApiResponse](../../../components/responses/.md) | Success No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index db71fd6318c..c4754846669 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -110,4 +110,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to README]](../../../../README.md) +[[Back to top]](#top) [[Back to API]](../UserApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md index 2fcca50943a..df6b2b4af9e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/client_request_body.md @@ -4,4 +4,4 @@ Type | Description | Notes [**Client**](../../components/schema/client.Client.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component RequestBodies]](../../../README.md#Component-RequestBodies) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md index b9649135f0f..01a7b64645a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/pet_request_body.md @@ -9,4 +9,4 @@ Type | Description | Notes [**Pet**](../../components/schema/pet.Pet.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component RequestBodies]](../../../README.md#Component-RequestBodies) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md index 58cec699668..56102cf6585 100644 --- a/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md +++ b/samples/openapi3/client/petstore/python/docs/components/request_bodies/user_array_request_body.md @@ -10,4 +10,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | [**User**](../../components/schema/user.User.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component RequestBodies]](../../../README.md#Component-RequestBodies) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md index f1b08ee3bcb..b04c66f3765 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -7,4 +7,4 @@ response | urllib3.HTTPResponse | Raw response | body | Unset | body was not defined | headers | Unset | headers were not defined | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component Responses]](../../../README.md#Component-Responses) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md index d52658a8003..4e82b8137fd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md @@ -31,4 +31,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component Responses]](../../../README.md#Component-Responses) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md index 1e77a9942ac..71b43b32ee0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -13,4 +13,4 @@ Type | Description | Notes [**ApiResponse**](../../components/schema/api_response.ApiResponse.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Component Responses]](../../../README.md#Component-Responses) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md index ec23b6afe9e..ba5fd4a4be5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/abstract_step_message.AbstractStepMessage.md @@ -23,4 +23,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**AbstractStepMessage**](#AbstractStepMessage) | [**AbstractStepMessage**](#AbstractStepMessage) | [**AbstractStepMessage**](#AbstractStepMessage) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md index 1980bcad25f..930f96b5e02 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_class.AdditionalPropertiesClass.md @@ -107,4 +107,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | str, | str, | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md index 90f6c75e2bc..20054ce95e5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md @@ -51,4 +51,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md index ee60f5cd97d..97d3bc95f81 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md @@ -24,4 +24,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**EnumClass**](enum_class.EnumClass.md) | [**EnumClass**](enum_class.EnumClass.md) | [**EnumClass**](enum_class.EnumClass.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md b/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md index 83cde9a4f92..13fb33422fa 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/address.Address.md @@ -12,4 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | decimal.Decimal, int, | decimal.Decimal, | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md index f0d895ee88c..e909fb2c3cb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal.Animal.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **color** | str, | str, | | [optional] if omitted the server will use the default value of "red" **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md b/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md index 24e914579e6..59be4103564 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/animal_farm.AnimalFarm.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md index 029ed182fda..941ca43e4d9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_and_format.AnyTypeAndFormat.md @@ -21,4 +21,4 @@ Key | Input Type | Accessed Type | Description | Notes **float** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] value must be a 32 bit float **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md index f9542e11af9..d767e160638 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/any_type_not_string.AnyTypeNotString.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md index dfc19e08d83..083363d472d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/api_response.ApiResponse.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **message** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md index 21136cb0b46..b3a0e3fcc57 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple.Apple.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **origin** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md index fb515e898f1..0bea130e387 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/apple_req.AppleReq.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **cultivar** | str, | str, | | **mealy** | bool, | BoolClass, | | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md index 86186f28095..1025c883ae9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_holding_any_type.ArrayHoldingAnyType.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any type can be stored here | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md index 0d28667be17..d2a667bc308 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_array_of_number_only.ArrayOfArrayOfNumberOnly.md @@ -37,4 +37,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md index 6af71a0a41f..3099d33261a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_enums.ArrayOfEnums.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**StringEnum**](string_enum.StringEnum.md) | [**StringEnum**](string_enum.StringEnum.md) | [**StringEnum**](string_enum.StringEnum.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md index b44e45e49c6..77415bdc84c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_of_number_only.ArrayOfNumberOnly.md @@ -25,4 +25,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md index bcde12305d8..a8552eef57c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_test.ArrayTest.md @@ -75,4 +75,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | [**ReadOnlyFirst**](read_only_first.ReadOnlyFirst.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md b/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md index 6023b61f44e..282ed53c726 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/array_with_validations_in_items.ArrayWithValidationsInItems.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md index ff10eaf5aff..4aa7c097c7d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana.Banana.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md index 663e4823b9d..d65590865de 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/banana_req.BananaReq.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **lengthCm** | decimal.Decimal, int, float, | decimal.Decimal, | | **sweet** | bool, | BoolClass, | | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md b/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md index f2675838893..e766a8b902e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/bar.Bar.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | if omitted the server will use the default value of "bar" -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md index af7858681c5..b2b7d302ba3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/basque_pig.BasquePig.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["BasquePig", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md b/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md index 81dc9be41b4..81c57561e57 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/boolean.Boolean.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md index cc5296dba1f..3a0d40e41c2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/boolean_enum.BooleanEnum.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | must be one of [True, ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md index 012977cb4a4..15340646ed4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/capitalization.Capitalization.md @@ -18,4 +18,4 @@ Key | Input Type | Accessed Type | Description | Notes **ATT_NAME** | str, | str, | Name of the pet | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md index 6dd007e312c..bd9c6c439cd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/cat.Cat.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **declawed** | bool, | BoolClass, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md index 110e90407b7..f897314309a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/category.Category.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md index 8b850a09c75..4adcfd2a259 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/child_cat.ChildCat.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md index e332155edf1..ba074f6202c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/class_model.ClassModel.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **_class** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md index f8cf7221010..a0bedfe5aec 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/client.Client.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **client** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md index ba8e03a1e0c..390c0911e75 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/complex_quadrilateral.ComplexQuadrilateral.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | [optional] must be one of ["ComplexQuadrilateral", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md index 29848baba31..96691031bae 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_any_of_different_types_no_validations.ComposedAnyOfDifferentTypesNoValidations.md @@ -145,4 +145,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md index a4212785b84..59aa8eebe47 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_array.ComposedArray.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md index ca1babb62eb..fca81a86ff7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_bool.ComposedBool.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md index 8900ed709f6..f6c17ffddb5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_none.ComposedNone.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md index b7c50c53fdb..e9131b3460d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_number.ComposedNumber.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md index 2905afcd344..d5e030bf433 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_object.ComposedObject.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md index 907928c438b..bc1a370affb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md @@ -61,4 +61,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md index 45782f9f655..7c8e1ba76e4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/composed_string.ComposedString.md @@ -20,4 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md b/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md index 1addd7a4049..4ac9196c4c4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/currency.Currency.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["eur", "usd", ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md index 4d29b0a3e4b..00251ea8506 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/danish_pig.DanishPig.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **className** | str, | str, | | must be one of ["DanishPig", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md index 2fb675d4670..4e74b3763f3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_test.DateTimeTest.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | if omitted the server will use the default value of 2010-01-01T10:10:10.000111+01:00value must conform to RFC-3339 date-time -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md index cf57e7a49bc..945e2a91ee1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_time_with_validations.DateTimeWithValidations.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, datetime, | str, | | value must conform to RFC-3339 date-time -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md index 7ba12ef22d1..1c9a5e0fda1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/date_with_validations.DateWithValidations.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, date, | str, | | value must conform to RFC-3339 full-date YYYY-MM-DD -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md b/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md index 08d997c3e4a..6a62b34a9bb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/decimal_payload.DecimalPayload.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | value must be numeric and storable in decimal.Decimal -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md index 476cd41bc02..a1a7cc014b6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/dog.Dog.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **breed** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md b/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md index 30fffd4f02c..2699aa14836 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/drawing.Drawing.md @@ -28,4 +28,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Shape**](shape.Shape.md) | [**Shape**](shape.Shape.md) | [**Shape**](shape.Shape.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md index 09df49b4bab..65bbbc10da2 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_arrays.EnumArrays.md @@ -26,4 +26,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | str, | str, | | must be one of ["fish", "crab", ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md index fa9c9b9bdff..a2efabb194e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_class.EnumClass.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["_abc", "-efg", "(xyz)", "COUNT_1M", "COUNT_50M", ] if omitted the server will use the default value of "-efg" -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md index 1859aa80786..e0326ee486d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/enum_test.EnumTest.md @@ -21,4 +21,4 @@ Key | Input Type | Accessed Type | Description | Notes **IntegerEnumOneValue** | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | [**IntegerEnumOneValue**](integer_enum_one_value.IntegerEnumOneValue.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md index af1cf99b870..9058b6b9818 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/equilateral_triangle.EquilateralTriangle.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["EquilateralTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md index 5201889925c..8f04e623a29 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file.File.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **sourceURI** | str, | str, | Test capitalization | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md index b8b193d1156..3c8098cc4e8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/file_schema_test_class.FileSchemaTestClass.md @@ -26,4 +26,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**File**](file.File.md) | [**File**](file.File.md) | [**File**](file.File.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md index 8492c7a6977..f7802d017b5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/foo.Foo.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | [**Bar**](bar.Bar.md) | [**Bar**](bar.Bar.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md index 99c10d52b84..081b65c1f4a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/format_test.FormatTest.md @@ -45,4 +45,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md index 304c7feddaa..3dc2426dec3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/from_schema.FromSchema.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md index 16cb592e0cf..1e67a831bf5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit.Fruit.md @@ -20,4 +20,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md index abb2573b352..da37b7b3821 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/fruit_req.FruitReq.md @@ -22,4 +22,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md index ff2c1c71ddd..d00852fd500 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/gm_fruit.GmFruit.md @@ -20,4 +20,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | [**Apple**](apple.Apple.md) | | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | [**Banana**](banana.Banana.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md index 8f4cdd449b5..d946578d6dd 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/grandparent_animal.GrandparentAnimal.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **pet_type** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md index ec104983500..a889a8966a1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/has_only_read_only.HasOnlyReadOnly.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md index 3988e4e5c64..54ac2f1b4e6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/health_check_result.HealthCheckResult.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **NullableMessage** | None, str, | NoneClass, str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md index 48e1ae3a325..62d3b34bf28 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum.IntegerEnum.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md index dc2d298d1fb..154c52e94ff 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_big.IntegerEnumBig.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [10, 11, 12, ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md index 03b1fe6273e..082d6344f2e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_one_value.IntegerEnumOneValue.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md index c188329e695..db3456a1d62 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_enum_with_default_value.IntegerEnumWithDefaultValue.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | must be one of [0, 1, 2, ] if omitted the server will use the default value of 0 -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md index 327f8cb2c7a..b2d07b5658a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_max10.IntegerMax10.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md b/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md index 982744d762e..9546b1d46d3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/integer_min15.IntegerMin15.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md index 67fe56565e2..0422bf6d297 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/isosceles_triangle.IsoscelesTriangle.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["IsoscelesTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md index 280a330b16b..4a2db73c1f3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request.JSONPatchRequest.md @@ -27,4 +27,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | [**JSONPatchRequestRemove**](json_patch_request_remove.JSONPatchRequestRemove.md) | | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | [**JSONPatchRequestMoveCopy**](json_patch_request_move_copy.JSONPatchRequestMoveCopy.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md index 40d0c9db206..4f56dc108aa 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_add_replace_test.JSONPatchRequestAddReplaceTest.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **path** | str, | str, | A JSON Pointer path. | **value** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | The value to add, replace or test. | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md index 2d18af644fa..e8568e41512 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_move_copy.JSONPatchRequestMoveCopy.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **path** | str, | str, | A JSON Pointer path. | **from** | str, | str, | A JSON Pointer path. | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md index 72e8a021cc5..46652ddfed7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/json_patch_request_remove.JSONPatchRequestRemove.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **op** | str, | str, | The operation to perform. | must be one of ["remove", ] **path** | str, | str, | A JSON Pointer path. | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md index ce8af053fbc..f58e31fdbc7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mammal.Mammal.md @@ -15,4 +15,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Zebra**](zebra.Zebra.md) | [**Zebra**](zebra.Zebra.md) | [**Zebra**](zebra.Zebra.md) | | [**Pig**](pig.Pig.md) | [**Pig**](pig.Pig.md) | [**Pig**](pig.Pig.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md index 0b6f13a04bd..9b51dc41f99 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/map_test.MapTest.md @@ -64,4 +64,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md index 1562f4c29bf..9a3935d3cd6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/mixed_properties_and_additional_properties_class.MixedPropertiesAndAdditionalPropertiesClass.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | [**Animal**](animal.Animal.md) | [**Animal**](animal.Animal.md) | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md b/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md index b1dedaf99bb..21fb634cd02 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/model200_response.Model200Response.md @@ -16,4 +16,4 @@ Key | Input Type | Accessed Type | Description | Notes **class** | str, | str, | this is a reserved python keyword | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md b/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md index 78256fb901a..23e3fe2ff44 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/model_return.ModelReturn.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **return** | decimal.Decimal, int, | decimal.Decimal, | this is a reserved python keyword | [optional] value must be a 32 bit integer **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md index e08321a1760..f0ed1fafeca 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/money.Money.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **currency** | [**Currency**](currency.Currency.md) | [**Currency**](currency.Currency.md) | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md index f9cd4413d6c..b6fafdb2da9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/name.Name.md @@ -17,4 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **property** | str, | str, | this is a reserved python keyword | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md index 12a44f76dc7..a4542cb1e2a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/no_additional_properties.NoAdditionalProperties.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **id** | decimal.Decimal, int, | decimal.Decimal, | | value must be a 64 bit integer **petId** | decimal.Decimal, int, | decimal.Decimal, | | [optional] value must be a 64 bit integer -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md index 66aae696778..e3a19f2bd17 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_class.NullableClass.md @@ -145,4 +145,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, None, | frozendict.frozendict, NoneClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md index 5246b72f79d..6600f05ebcb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_shape.NullableShape.md @@ -24,4 +24,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md index 6e71568b554..367d1de6100 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/nullable_string.NullableString.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, str, | NoneClass, str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md b/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md index 12d21ca5a30..ba438207447 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number.Number.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md index de3109d6e5e..8cff3aa11fb 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_only.NumberOnly.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **JustNumber** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md index aa7304922a5..76324df7013 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/number_with_validations.NumberWithValidations.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md index 8b6b5ad00ed..62c0a63dd34 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_interface.ObjectInterface.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, | frozendict.frozendict, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md index e2adfaa3e9b..1f73350d45a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_arg_and_args_properties.ObjectModelWithArgAndArgsProperties.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **arg** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md index b7895a1f41b..14191f4c2d5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md @@ -17,4 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **myBoolean** | [**Boolean**](boolean.Boolean.md) | [**Boolean**](boolean.Boolean.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md index d14db1ea279..5eff1641dc5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_all_of_with_req_test_prop_from_unset_add_prop.ObjectWithAllOfWithReqTestPropFromUnsetAddProp.md @@ -28,4 +28,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md index d4f13444bee..1b4a9cbac2d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_decimal_properties.ObjectWithDecimalProperties.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **cost** | [**Money**](money.Money.md) | [**Money**](money.Money.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md index 1d1c3c3c90f..4e49d709a38 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_difficultly_named_props.ObjectWithDifficultlyNamedProps.md @@ -17,4 +17,4 @@ Key | Input Type | Accessed Type | Description | Notes **123Number** | decimal.Decimal, int, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md index b3858457214..34989e2ad55 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_inline_composition_property.ObjectWithInlineCompositionProperty.md @@ -33,4 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md index 9070bc8df15..5c6999d885a 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_invalid_named_refed_properties.ObjectWithInvalidNamedRefedProperties.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **from** | [**FromSchema**](from_schema.FromSchema.md) | [**FromSchema**](from_schema.FromSchema.md) | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md index dc6e3e9552d..fd3b759f56f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_optional_test_prop.ObjectWithOptionalTestProp.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **test** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md index 94604fc9889..b9be165de48 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/object_with_validations.ObjectWithValidations.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, | frozendict.frozendict, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md index bc3854984ab..d71abec80c6 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/order.Order.md @@ -18,4 +18,4 @@ Key | Input Type | Accessed Type | Description | Notes **complete** | bool, | BoolClass, | | [optional] if omitted the server will use the default value of False **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md b/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md index 16874a0f93b..5c5379f7dd4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/parent_pet.ParentPet.md @@ -13,4 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | [**GrandparentAnimal**](grandparent_animal.GrandparentAnimal.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md index 183d7c1b552..c54ad039b2f 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pet.Pet.md @@ -44,4 +44,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**Tag**](tag.Tag.md) | [**Tag**](tag.Tag.md) | [**Tag**](tag.Tag.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md index c433fddd899..579b5dd7a85 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/pig.Pig.md @@ -14,4 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**BasquePig**](basque_pig.BasquePig.md) | [**BasquePig**](basque_pig.BasquePig.md) | [**BasquePig**](basque_pig.BasquePig.md) | | [**DanishPig**](danish_pig.DanishPig.md) | [**DanishPig**](danish_pig.DanishPig.md) | [**DanishPig**](danish_pig.DanishPig.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md index f829442493d..9fbf47d2203 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/player.Player.md @@ -16,4 +16,4 @@ Key | Input Type | Accessed Type | Description | Notes **enemyPlayer** | [**Player**](#Player) | [**Player**](#Player) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md index 821cd2cf6c2..21ead6d95b8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral.Quadrilateral.md @@ -14,4 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | [**SimpleQuadrilateral**](simple_quadrilateral.SimpleQuadrilateral.md) | | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | [**ComplexQuadrilateral**](complex_quadrilateral.ComplexQuadrilateral.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md index d7714be96cb..b031e6fb13e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/quadrilateral_interface.QuadrilateralInterface.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md index 021e7af9544..b5725e6d6d9 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/read_only_first.ReadOnlyFirst.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **baz** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md index 1e2e8671743..80565721ef5 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/scalene_triangle.ScaleneTriangle.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | [optional] must be one of ["ScaleneTriangle", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md index be2426d524d..ca071fc6832 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_array_model.SelfReferencingArrayModel.md @@ -12,4 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | [**SelfReferencingArrayModel**](#SelfReferencingArrayModel) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md index 7481bba430a..6c39ccab0a4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/self_referencing_object_model.SelfReferencingObjectModel.md @@ -13,4 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **selfRef** | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | | [optional] **any_string_name** | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | [**SelfReferencingObjectModel**](#SelfReferencingObjectModel) | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md index 60ffe7d3883..1b9ccd15b64 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape.Shape.md @@ -14,4 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**Triangle**](triangle.Triangle.md) | [**Triangle**](triangle.Triangle.md) | [**Triangle**](triangle.Triangle.md) | | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | [**Quadrilateral**](quadrilateral.Quadrilateral.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md index 694d4c933a3..d8e0a1522c8 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/shape_or_null.ShapeOrNull.md @@ -24,4 +24,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md index 24c3f59f979..9234a89992d 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/simple_quadrilateral.SimpleQuadrilateral.md @@ -27,4 +27,4 @@ Key | Input Type | Accessed Type | Description | Notes **quadrilateralType** | str, | str, | | [optional] must be one of ["SimpleQuadrilateral", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md index 2a6c9640e3a..65c19c9dbb1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/some_object.SomeObject.md @@ -13,4 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**ObjectInterface**](object_interface.ObjectInterface.md) | [**ObjectInterface**](object_interface.ObjectInterface.md) | [**ObjectInterface**](object_interface.ObjectInterface.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md index d45bec46990..1c42d4294e0 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/special_model_name.SpecialModelName.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **a** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md b/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md index f0d429b9e4f..e804db78998 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string.String.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md index 384f01c1a97..f55c41a3566 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_boolean_map.StringBooleanMap.md @@ -12,4 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md index a1d8c637e2d..0dacb0c0832 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum.StringEnum.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, str, | NoneClass, str, | | must be one of ["placed", "approved", "delivered", "single quoted", "multiple\nlines", "double quote \n with newline", None, ] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md index 068fa25eb45..c0e82d525a7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_enum_with_default_value.StringEnumWithDefaultValue.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["placed", "approved", "delivered", ] if omitted the server will use the default value of "placed" -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md b/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md index 4ded7993d95..1b43a8f77f4 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/string_with_validation.StringWithValidation.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md index 7939d0aec65..254445a621c 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/tag.Tag.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **name** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md index 89470916762..890ab2ff2bf 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle.Triangle.md @@ -15,4 +15,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | [**IsoscelesTriangle**](isosceles_triangle.IsoscelesTriangle.md) | | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | [**ScaleneTriangle**](scalene_triangle.ScaleneTriangle.md) | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md index f9d4d6fe598..7e5995b5909 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/triangle_interface.TriangleInterface.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **triangleType** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md index ae7f5126960..aa3f45047a7 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/user.User.md @@ -65,4 +65,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md b/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md index 9cba3edb9d0..e6b8b77091e 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/uuid_string.UUIDString.md @@ -7,4 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, uuid.UUID, | str, | | value must be a uuid -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md index 3ecef4dbc03..a99cc8ee4d3 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/whale.Whale.md @@ -15,4 +15,4 @@ Key | Input Type | Accessed Type | Description | Notes **hasTeeth** | bool, | BoolClass, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md index b9970e8d742..698aea896b1 100644 --- a/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md +++ b/samples/openapi3/client/petstore/python/docs/components/schema/zebra.Zebra.md @@ -14,4 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **type** | str, | str, | | [optional] must be one of ["plains", "mountain", "grevys", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to top]](#top) [[Back to README]](../../../README.md) \ No newline at end of file +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file From cd8f1075deba21defbd034d954605a14f0ef1118 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 12:28:26 -0800 Subject: [PATCH 37/44] Fixes module structure of component responses, adds init file --- .../org/openapitools/codegen/CodegenConfig.java | 4 +--- .../openapitools/codegen/DefaultCodegen.java | 10 +++++----- .../openapitools/codegen/DefaultGenerator.java | 11 +++++------ .../codegen/languages/PythonClientCodegen.java | 17 ++++++++++++----- .../petstore/python/.openapi-generator/FILES | 7 ++++--- .../components/responses/__init__.py | 0 .../__init__.py} | 0 .../__init__.py} | 0 .../__init__.py} | 0 9 files changed, 27 insertions(+), 22 deletions(-) create mode 100644 samples/openapi3/client/petstore/python/petstore_api/components/responses/__init__.py rename samples/openapi3/client/petstore/python/petstore_api/components/responses/{success_description_only_response.py => success_description_only_response/__init__.py} (100%) rename samples/openapi3/client/petstore/python/petstore_api/components/responses/{success_inline_content_and_header_response.py => success_inline_content_and_header_response/__init__.py} (100%) rename samples/openapi3/client/petstore/python/petstore_api/components/responses/{success_with_json_api_response_response.py => success_with_json_api_response_response/__init__.py} (100%) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java index 3d1328cd981..4eb55ddd7f6 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenConfig.java @@ -89,7 +89,7 @@ public interface CodegenConfig { String requestBodyFileFolder(); - String responseFileFolder(); + String responseFileFolder(String componentName); String responseDocFileFolder(); @@ -229,8 +229,6 @@ public interface CodegenConfig { String toRequestBodyDocFilename(String componentName); - String toResponseFilename(String componentName); - String toResponseDocFilename(String componentName); String toPathFileName(String path); diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index d963350138b..0fbeb7e2684 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -1247,9 +1247,9 @@ public String toRequestBodyFilename(String componentName) { return toModuleFilename(componentName); } - public String toRequestBodyDocFilename(String componentName) { return toModuleFilename(componentName); } + public String toResponseModuleName(String componentName) { return toModuleFilename(componentName); } - public String toResponseFilename(String componentName) { return toModuleFilename(componentName); } + public String toRequestBodyDocFilename(String componentName) { return toModuleFilename(componentName); } public String toResponseDocFilename(String componentName) { return toModuleFilename(componentName); } @@ -6468,7 +6468,7 @@ private String toRefModule(String ref, String expectedComponentType) { case "requestBodies": return toRequestBodyFileName(refPieces[3]); case "responses": - return toResponseFilename(refPieces[3]); + return toResponseModuleName(refPieces[3]); } return null; } @@ -7164,8 +7164,8 @@ public String requestBodyFileFolder() { } @Override - public String responseFileFolder() { - return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "responses"; + public String responseFileFolder(String componentName) { + return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "responses" + File.separatorChar + toResponseModuleName(componentName); } @Override diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java index 3ab63d58473..8788c3c2baa 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java @@ -701,9 +701,9 @@ private TreeMap generateResponses(List files) { Boolean generateResponses = Boolean.TRUE; for (Map.Entry entry : config.responseTemplateFiles().entrySet()) { String templateName = entry.getKey(); - String fileExtension = entry.getValue(); - String responseFileFolder = config.responseFileFolder(); - String responseFilename = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName) + fileExtension; + String fileName = entry.getValue(); + String responseFileFolder = config.responseFileFolder(componentName); + String responseFilename = responseFileFolder + File.separatorChar + fileName; Map templateData = new HashMap<>(); templateData.put("packageName", config.packageName()); @@ -727,10 +727,9 @@ private TreeMap generateResponses(List files) { headerMap.put("parameter", header); headerMap.put("imports", header.imports); headerMap.put("packageName", config.packageName()); - String headerFolder = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName); - String headerFilename = responseFileFolder + File.separatorChar + config.toResponseFilename(componentName) + File.separatorChar + config.toParameterFileName(header.baseName) + ".py"; + String headerFilename = responseFileFolder + File.separatorChar + config.toParameterFileName(header.baseName) + ".py"; try { - File written = processTemplateToFile(headerMap, headerTemplateName, headerFilename, generateResponses, CodegenConstants.RESPONSES, headerFolder); + File written = processTemplateToFile(headerMap, headerTemplateName, headerFilename, generateResponses, CodegenConstants.RESPONSES, responseFileFolder); if (written != null) { files.add(written); if (config.isEnablePostProcessFile() && !dryRun) { 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 fcf06f1b0d6..42122776e29 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 @@ -20,6 +20,7 @@ import com.github.curiousoddman.rgxgen.config.RgxGenOption; import com.github.curiousoddman.rgxgen.config.RgxGenProperties; import com.google.common.base.CaseFormat; +import io.swagger.v3.oas.models.Components; import io.swagger.v3.oas.models.OpenAPI; import io.swagger.v3.oas.models.Operation; import io.swagger.v3.oas.models.PathItem; @@ -326,7 +327,7 @@ public void processOpts() { pathEndpointResponseTemplateFiles.put("response.handlebars", "__init__.py"); pathEndpointResponseHeaderTemplateFiles.add("header.handlebars"); pathEndpointTestTemplateFiles.add("endpoint_test.handlebars"); - responseTemplateFiles.put("response.handlebars", ".py"); + responseTemplateFiles.put("response.handlebars", "__init__.py"); responseDocTemplateFiles.put("response_doc.handlebars", ".md"); if (StringUtils.isEmpty(System.getenv("PYTHON_POST_PROCESS_FILE"))) { @@ -445,8 +446,14 @@ public void processOpts() { supportingFiles.add(new SupportingFile("__init__." + templateExtension, testFolder + File.separator + modelPackage.replace('.', File.separatorChar), "__init__.py")); supportingFiles.add(new SupportingFile("__init__." + templateExtension, testFolder + File.separator + "components", "__init__.py")); } - if (openAPI.getComponents() != null && openAPI.getComponents().getRequestBodies() != null) { - supportingFiles.add(new SupportingFile("__init__." + templateExtension, packagePath() + File.separator + "components" + File.separator + "request_bodies", "__init__.py")); + Components components = openAPI.getComponents(); + if (components != null) { + if (components.getRequestBodies() != null) { + supportingFiles.add(new SupportingFile("__init__." + templateExtension, packagePath() + File.separator + "components" + File.separator + "request_bodies", "__init__.py")); + } + if (components.getResponses() != null) { + supportingFiles.add(new SupportingFile("__init__." + templateExtension, packagePath() + File.separator + "components" + File.separator + "responses", "__init__.py")); + } } supportingFiles.add(new SupportingFile("api_client." + templateExtension, packagePath(), "api_client.py")); @@ -2359,11 +2366,11 @@ public String toApiDocFilename(String name) { return toApiName(name); } - public String toResponseFilename(String componentName) { + public String toResponseModuleName(String componentName) { return toModuleFilename(componentName) + "_response"; } - public String toResponseDocFilename(String componentName) { return toResponseFilename(componentName); } + public String toResponseDocFilename(String componentName) { return toResponseModuleName(componentName); } public String responseDocFileFolder() { return outputFolder + File.separator + responseDocPath; diff --git a/samples/openapi3/client/petstore/python/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index bb688fd36d8..5b704a5ed5f 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -265,10 +265,11 @@ petstore_api/components/request_bodies/__init__.py petstore_api/components/request_bodies/client_request_body.py petstore_api/components/request_bodies/pet_request_body.py petstore_api/components/request_bodies/user_array_request_body.py -petstore_api/components/responses/success_description_only_response.py -petstore_api/components/responses/success_inline_content_and_header_response.py +petstore_api/components/responses/__init__.py +petstore_api/components/responses/success_description_only_response/__init__.py +petstore_api/components/responses/success_inline_content_and_header_response/__init__.py petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py -petstore_api/components/responses/success_with_json_api_response_response.py +petstore_api/components/responses/success_with_json_api_response_response/__init__.py petstore_api/components/schema/__init__.py petstore_api/components/schema/abstract_step_message.py petstore_api/components/schema/abstract_step_message.pyi diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response/__init__.py similarity index 100% rename from samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_description_only_response/__init__.py diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/__init__.py similarity index 100% rename from samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/__init__.py diff --git a/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response/__init__.py similarity index 100% rename from samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response/__init__.py From 3bb27e71349ff0f84904faa93e47eff9278ea5e7 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 12:37:51 -0800 Subject: [PATCH 38/44] Samples regenerated --- .../client/3_0_3_unit_test/python/README.md | 5 ++-- .../docs/apis/tags/AdditionalPropertiesApi.md | 2 +- .../python/docs/apis/tags/AllOfApi.md | 2 +- .../python/docs/apis/tags/AnyOfApi.md | 2 +- .../docs/apis/tags/ContentTypeJsonApi.md | 2 +- .../python/docs/apis/tags/DefaultApi.md | 2 +- .../python/docs/apis/tags/EnumApi.md | 2 +- .../python/docs/apis/tags/FormatApi.md | 2 +- .../python/docs/apis/tags/ItemsApi.md | 2 +- .../python/docs/apis/tags/MaxItemsApi.md | 2 +- .../python/docs/apis/tags/MaxLengthApi.md | 2 +- .../python/docs/apis/tags/MaxPropertiesApi.md | 2 +- .../python/docs/apis/tags/MaximumApi.md | 2 +- .../python/docs/apis/tags/MinItemsApi.md | 2 +- .../python/docs/apis/tags/MinLengthApi.md | 2 +- .../python/docs/apis/tags/MinPropertiesApi.md | 2 +- .../python/docs/apis/tags/MinimumApi.md | 2 +- .../python/docs/apis/tags/ModelNotApi.md | 2 +- .../python/docs/apis/tags/MultipleOfApi.md | 2 +- .../python/docs/apis/tags/OneOfApi.md | 2 +- .../docs/apis/tags/OperationRequestBodyApi.md | 2 +- .../python/docs/apis/tags/PathPostApi.md | 2 +- .../python/docs/apis/tags/PatternApi.md | 2 +- .../python/docs/apis/tags/PropertiesApi.md | 2 +- .../python/docs/apis/tags/RefApi.md | 2 +- .../python/docs/apis/tags/RequiredApi.md | 2 +- .../ResponseContentContentTypeSchemaApi.md | 2 +- .../python/docs/apis/tags/TypeApi.md | 2 +- .../python/docs/apis/tags/UniqueItemsApi.md | 2 +- ...hema_which_should_validate_request_body.md | 4 +-- ...alidate_response_body_for_content_types.md | 3 +-- ...ies_are_allowed_by_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- ...erties_can_exist_by_itself_request_body.md | 4 +-- ..._itself_response_body_for_content_types.md | 3 +-- ...ld_not_look_in_applicators_request_body.md | 4 +-- ...icators_response_body_for_content_types.md | 3 +-- ..._combined_with_anyof_oneof_request_body.md | 4 +-- ...f_oneof_response_body_for_content_types.md | 3 +-- .../all_of_api/post_allof_request_body.md | 4 +-- ...t_allof_response_body_for_content_types.md | 3 +-- .../post_allof_simple_types_request_body.md | 4 +-- ...e_types_response_body_for_content_types.md | 3 +-- ...ost_allof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...llof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...ith_the_first_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...with_the_last_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...lof_with_two_empty_schemas_request_body.md | 4 +-- ...schemas_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- .../post_anyof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../any_of_api/post_anyof_request_body.md | 4 +-- ...t_anyof_response_body_for_content_types.md | 3 +-- ...ost_anyof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...nyof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...hema_which_should_validate_request_body.md | 4 +-- ...alidate_response_body_for_content_types.md | 3 +-- ...ies_are_allowed_by_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- ...erties_can_exist_by_itself_request_body.md | 4 +-- ..._itself_response_body_for_content_types.md | 3 +-- ...ld_not_look_in_applicators_request_body.md | 4 +-- ...icators_response_body_for_content_types.md | 3 +-- ..._combined_with_anyof_oneof_request_body.md | 4 +-- ...f_oneof_response_body_for_content_types.md | 3 +-- .../post_allof_request_body.md | 4 +-- ...t_allof_response_body_for_content_types.md | 3 +-- .../post_allof_simple_types_request_body.md | 4 +-- ...e_types_response_body_for_content_types.md | 3 +-- ...ost_allof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...llof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...ith_the_first_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...with_the_last_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...lof_with_two_empty_schemas_request_body.md | 4 +-- ...schemas_response_body_for_content_types.md | 3 +-- .../post_anyof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../post_anyof_request_body.md | 4 +-- ...t_anyof_response_body_for_content_types.md | 3 +-- ...ost_anyof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...nyof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._array_type_matches_arrays_request_body.md | 4 +-- ..._arrays_response_body_for_content_types.md | 3 +-- ...lean_type_matches_booleans_request_body.md | 4 +-- ...ooleans_response_body_for_content_types.md | 3 +-- .../post_by_int_request_body.md | 4 +-- ..._by_int_response_body_for_content_types.md | 3 +-- .../post_by_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- .../post_by_small_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- .../post_date_time_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_email_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...with0_does_not_match_false_request_body.md | 4 +-- ...h_false_response_body_for_content_types.md | 3 +-- ..._with1_does_not_match_true_request_body.md | 4 +-- ...ch_true_response_body_for_content_types.md | 3 +-- ...um_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...with_false_does_not_match0_request_body.md | 4 +-- ..._match0_response_body_for_content_types.md | 3 +-- ..._with_true_does_not_match1_request_body.md | 4 +-- ..._match1_response_body_for_content_types.md | 3 +-- .../post_enums_in_properties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- .../post_forbidden_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- .../post_hostname_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...eger_type_matches_integers_request_body.md | 4 +-- ...ntegers_response_body_for_content_types.md | 3 +-- ...or_when_float_division_inf_request_body.md | 4 +-- ...ion_inf_response_body_for_content_types.md | 3 +-- ...d_string_value_for_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- .../post_ipv4_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_ipv6_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_json_pointer_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_maximum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...tion_with_unsigned_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_maxitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_maxlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._means_the_object_is_empty_request_body.md | 4 +-- ...s_empty_response_body_for_content_types.md | 3 +-- ...t_maxproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minimum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...dation_with_signed_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_minitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...t_minproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- .../post_nested_items_request_body.md | 4 +-- ...d_items_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...st_not_more_complex_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../post_not_request_body.md | 4 +-- ...ost_not_response_body_for_content_types.md | 3 +-- ..._nul_characters_in_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...tches_only_the_null_object_request_body.md | 4 +-- ..._object_response_body_for_content_types.md | 3 +-- ...umber_type_matches_numbers_request_body.md | 4 +-- ...numbers_response_body_for_content_types.md | 3 +-- ...ject_properties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...bject_type_matches_objects_request_body.md | 4 +-- ...objects_response_body_for_content_types.md | 3 +-- .../post_oneof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../post_oneof_request_body.md | 4 +-- ...t_oneof_response_body_for_content_types.md | 3 +-- ...ost_oneof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...st_oneof_with_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../post_oneof_with_required_request_body.md | 4 +-- ...equired_response_body_for_content_types.md | 3 +-- ...st_pattern_is_not_anchored_request_body.md | 4 +-- ...nchored_response_body_for_content_types.md | 3 +-- .../post_pattern_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...es_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ef_that_is_not_a_reference_request_body.md | 4 +-- ...ference_response_body_for_content_types.md | 3 +-- ...ef_in_additionalproperties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- .../post_ref_in_allof_request_body.md | 4 +-- ...n_allof_response_body_for_content_types.md | 3 +-- .../post_ref_in_anyof_request_body.md | 4 +-- ...n_anyof_response_body_for_content_types.md | 3 +-- .../post_ref_in_items_request_body.md | 4 +-- ...n_items_response_body_for_content_types.md | 3 +-- .../post_ref_in_not_request_body.md | 4 +-- ..._in_not_response_body_for_content_types.md | 3 +-- .../post_ref_in_oneof_request_body.md | 4 +-- ...n_oneof_response_body_for_content_types.md | 3 +-- .../post_ref_in_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- ...equired_default_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_required_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._required_with_empty_array_request_body.md | 4 +-- ...y_array_response_body_for_content_types.md | 3 +-- ...ed_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ost_simple_enum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...tring_type_matches_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...if_the_property_is_missing_request_body.md | 4 +-- ...missing_response_body_for_content_types.md | 3 +-- ...iqueitems_false_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...ost_uniqueitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_uri_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_reference_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_template_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...d_string_value_for_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- ...if_the_property_is_missing_request_body.md | 4 +-- ...missing_response_body_for_content_types.md | 3 +-- ...with0_does_not_match_false_request_body.md | 4 +-- ...h_false_response_body_for_content_types.md | 3 +-- ..._with1_does_not_match_true_request_body.md | 4 +-- ...ch_true_response_body_for_content_types.md | 3 +-- ...um_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...with_false_does_not_match0_request_body.md | 4 +-- ..._match0_response_body_for_content_types.md | 3 +-- ..._with_true_does_not_match1_request_body.md | 4 +-- ..._match1_response_body_for_content_types.md | 3 +-- .../post_enums_in_properties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- ..._nul_characters_in_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...ost_simple_enum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_date_time_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_email_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_hostname_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_ipv4_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_ipv6_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_json_pointer_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_reference_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_template_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_nested_items_request_body.md | 4 +-- ...d_items_response_body_for_content_types.md | 3 +-- .../post_maxitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_maxlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._means_the_object_is_empty_request_body.md | 4 +-- ...s_empty_response_body_for_content_types.md | 3 +-- ...t_maxproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_maximum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...tion_with_unsigned_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_minitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...t_minproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minimum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...dation_with_signed_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_forbidden_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- ...st_not_more_complex_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../model_not_api/post_not_request_body.md | 4 +-- ...ost_not_response_body_for_content_types.md | 3 +-- .../post_by_int_request_body.md | 4 +-- ..._by_int_response_body_for_content_types.md | 3 +-- .../post_by_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- .../post_by_small_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- ...or_when_float_division_inf_request_body.md | 4 +-- ...ion_inf_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- .../post_oneof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../one_of_api/post_oneof_request_body.md | 4 +-- ...t_oneof_response_body_for_content_types.md | 3 +-- ...ost_oneof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...st_oneof_with_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../post_oneof_with_required_request_body.md | 4 +-- ...equired_response_body_for_content_types.md | 3 +-- ...hema_which_should_validate_request_body.md | 4 +-- ...ies_are_allowed_by_default_request_body.md | 4 +-- ...erties_can_exist_by_itself_request_body.md | 4 +-- ...ld_not_look_in_applicators_request_body.md | 4 +-- ..._combined_with_anyof_oneof_request_body.md | 4 +-- .../post_allof_request_body.md | 4 +-- .../post_allof_simple_types_request_body.md | 4 +-- ...ost_allof_with_base_schema_request_body.md | 4 +-- ...llof_with_one_empty_schema_request_body.md | 4 +-- ...ith_the_first_empty_schema_request_body.md | 4 +-- ...with_the_last_empty_schema_request_body.md | 4 +-- ...lof_with_two_empty_schemas_request_body.md | 4 +-- .../post_anyof_complex_types_request_body.md | 4 +-- .../post_anyof_request_body.md | 4 +-- ...ost_anyof_with_base_schema_request_body.md | 4 +-- ...nyof_with_one_empty_schema_request_body.md | 4 +-- ..._array_type_matches_arrays_request_body.md | 4 +-- ...lean_type_matches_booleans_request_body.md | 4 +-- .../post_by_int_request_body.md | 4 +-- .../post_by_number_request_body.md | 4 +-- .../post_by_small_number_request_body.md | 4 +-- .../post_date_time_format_request_body.md | 4 +-- .../post_email_format_request_body.md | 4 +-- ...with0_does_not_match_false_request_body.md | 4 +-- ..._with1_does_not_match_true_request_body.md | 4 +-- ...um_with_escaped_characters_request_body.md | 4 +-- ...with_false_does_not_match0_request_body.md | 4 +-- ..._with_true_does_not_match1_request_body.md | 4 +-- .../post_enums_in_properties_request_body.md | 4 +-- .../post_forbidden_property_request_body.md | 4 +-- .../post_hostname_format_request_body.md | 4 +-- ...eger_type_matches_integers_request_body.md | 4 +-- ...or_when_float_division_inf_request_body.md | 4 +-- ...d_string_value_for_default_request_body.md | 4 +-- .../post_ipv4_format_request_body.md | 4 +-- .../post_ipv6_format_request_body.md | 4 +-- .../post_json_pointer_format_request_body.md | 4 +-- .../post_maximum_validation_request_body.md | 4 +-- ...tion_with_unsigned_integer_request_body.md | 4 +-- .../post_maxitems_validation_request_body.md | 4 +-- .../post_maxlength_validation_request_body.md | 4 +-- ..._means_the_object_is_empty_request_body.md | 4 +-- ...t_maxproperties_validation_request_body.md | 4 +-- .../post_minimum_validation_request_body.md | 4 +-- ...dation_with_signed_integer_request_body.md | 4 +-- .../post_minitems_validation_request_body.md | 4 +-- .../post_minlength_validation_request_body.md | 4 +-- ...t_minproperties_validation_request_body.md | 4 +-- ...check_validation_semantics_request_body.md | 4 +-- ...check_validation_semantics_request_body.md | 4 +-- .../post_nested_items_request_body.md | 4 +-- ...check_validation_semantics_request_body.md | 4 +-- ...st_not_more_complex_schema_request_body.md | 4 +-- .../post_not_request_body.md | 4 +-- ..._nul_characters_in_strings_request_body.md | 4 +-- ...tches_only_the_null_object_request_body.md | 4 +-- ...umber_type_matches_numbers_request_body.md | 4 +-- ...ject_properties_validation_request_body.md | 4 +-- ...bject_type_matches_objects_request_body.md | 4 +-- .../post_oneof_complex_types_request_body.md | 4 +-- .../post_oneof_request_body.md | 4 +-- ...ost_oneof_with_base_schema_request_body.md | 4 +-- ...st_oneof_with_empty_schema_request_body.md | 4 +-- .../post_oneof_with_required_request_body.md | 4 +-- ...st_pattern_is_not_anchored_request_body.md | 4 +-- .../post_pattern_validation_request_body.md | 4 +-- ...es_with_escaped_characters_request_body.md | 4 +-- ...ef_that_is_not_a_reference_request_body.md | 4 +-- ...ef_in_additionalproperties_request_body.md | 4 +-- .../post_ref_in_allof_request_body.md | 4 +-- .../post_ref_in_anyof_request_body.md | 4 +-- .../post_ref_in_items_request_body.md | 4 +-- .../post_ref_in_not_request_body.md | 4 +-- .../post_ref_in_oneof_request_body.md | 4 +-- .../post_ref_in_property_request_body.md | 4 +-- ...equired_default_validation_request_body.md | 4 +-- .../post_required_validation_request_body.md | 4 +-- ..._required_with_empty_array_request_body.md | 4 +-- ...ed_with_escaped_characters_request_body.md | 4 +-- ...ost_simple_enum_validation_request_body.md | 4 +-- ...tring_type_matches_strings_request_body.md | 4 +-- ...if_the_property_is_missing_request_body.md | 4 +-- ...iqueitems_false_validation_request_body.md | 4 +-- ...ost_uniqueitems_validation_request_body.md | 4 +-- .../post_uri_format_request_body.md | 4 +-- .../post_uri_reference_format_request_body.md | 4 +-- .../post_uri_template_format_request_body.md | 4 +-- ...hema_which_should_validate_request_body.md | 4 +-- ...alidate_response_body_for_content_types.md | 3 +-- ...ies_are_allowed_by_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- ...erties_can_exist_by_itself_request_body.md | 4 +-- ..._itself_response_body_for_content_types.md | 3 +-- ...ld_not_look_in_applicators_request_body.md | 4 +-- ...icators_response_body_for_content_types.md | 3 +-- ..._combined_with_anyof_oneof_request_body.md | 4 +-- ...f_oneof_response_body_for_content_types.md | 3 +-- .../path_post_api/post_allof_request_body.md | 4 +-- ...t_allof_response_body_for_content_types.md | 3 +-- .../post_allof_simple_types_request_body.md | 4 +-- ...e_types_response_body_for_content_types.md | 3 +-- ...ost_allof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...llof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...ith_the_first_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...with_the_last_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...lof_with_two_empty_schemas_request_body.md | 4 +-- ...schemas_response_body_for_content_types.md | 3 +-- .../post_anyof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../path_post_api/post_anyof_request_body.md | 4 +-- ...t_anyof_response_body_for_content_types.md | 3 +-- ...ost_anyof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...nyof_with_one_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._array_type_matches_arrays_request_body.md | 4 +-- ..._arrays_response_body_for_content_types.md | 3 +-- ...lean_type_matches_booleans_request_body.md | 4 +-- ...ooleans_response_body_for_content_types.md | 3 +-- .../path_post_api/post_by_int_request_body.md | 4 +-- ..._by_int_response_body_for_content_types.md | 3 +-- .../post_by_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- .../post_by_small_number_request_body.md | 4 +-- ..._number_response_body_for_content_types.md | 3 +-- .../post_date_time_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_email_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...with0_does_not_match_false_request_body.md | 4 +-- ...h_false_response_body_for_content_types.md | 3 +-- ..._with1_does_not_match_true_request_body.md | 4 +-- ...ch_true_response_body_for_content_types.md | 3 +-- ...um_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...with_false_does_not_match0_request_body.md | 4 +-- ..._match0_response_body_for_content_types.md | 3 +-- ..._with_true_does_not_match1_request_body.md | 4 +-- ..._match1_response_body_for_content_types.md | 3 +-- .../post_enums_in_properties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- .../post_forbidden_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- .../post_hostname_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...eger_type_matches_integers_request_body.md | 4 +-- ...ntegers_response_body_for_content_types.md | 3 +-- ...or_when_float_division_inf_request_body.md | 4 +-- ...ion_inf_response_body_for_content_types.md | 3 +-- ...d_string_value_for_default_request_body.md | 4 +-- ...default_response_body_for_content_types.md | 3 +-- .../post_ipv4_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_ipv6_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_json_pointer_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_maximum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...tion_with_unsigned_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_maxitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_maxlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._means_the_object_is_empty_request_body.md | 4 +-- ...s_empty_response_body_for_content_types.md | 3 +-- ...t_maxproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minimum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...dation_with_signed_integer_request_body.md | 4 +-- ...integer_response_body_for_content_types.md | 3 +-- .../post_minitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_minlength_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...t_minproperties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- .../post_nested_items_request_body.md | 4 +-- ...d_items_response_body_for_content_types.md | 3 +-- ...check_validation_semantics_request_body.md | 4 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...st_not_more_complex_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../path_post_api/post_not_request_body.md | 4 +-- ...ost_not_response_body_for_content_types.md | 3 +-- ..._nul_characters_in_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...tches_only_the_null_object_request_body.md | 4 +-- ..._object_response_body_for_content_types.md | 3 +-- ...umber_type_matches_numbers_request_body.md | 4 +-- ...numbers_response_body_for_content_types.md | 3 +-- ...ject_properties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...bject_type_matches_objects_request_body.md | 4 +-- ...objects_response_body_for_content_types.md | 3 +-- .../post_oneof_complex_types_request_body.md | 4 +-- ...x_types_response_body_for_content_types.md | 3 +-- .../path_post_api/post_oneof_request_body.md | 4 +-- ...t_oneof_response_body_for_content_types.md | 3 +-- ...ost_oneof_with_base_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...st_oneof_with_empty_schema_request_body.md | 4 +-- ..._schema_response_body_for_content_types.md | 3 +-- .../post_oneof_with_required_request_body.md | 4 +-- ...equired_response_body_for_content_types.md | 3 +-- ...st_pattern_is_not_anchored_request_body.md | 4 +-- ...nchored_response_body_for_content_types.md | 3 +-- .../post_pattern_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...es_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ef_that_is_not_a_reference_request_body.md | 4 +-- ...ference_response_body_for_content_types.md | 3 +-- ...ef_in_additionalproperties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- .../post_ref_in_allof_request_body.md | 4 +-- ...n_allof_response_body_for_content_types.md | 3 +-- .../post_ref_in_anyof_request_body.md | 4 +-- ...n_anyof_response_body_for_content_types.md | 3 +-- .../post_ref_in_items_request_body.md | 4 +-- ...n_items_response_body_for_content_types.md | 3 +-- .../post_ref_in_not_request_body.md | 4 +-- ..._in_not_response_body_for_content_types.md | 3 +-- .../post_ref_in_oneof_request_body.md | 4 +-- ...n_oneof_response_body_for_content_types.md | 3 +-- .../post_ref_in_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- ...equired_default_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_required_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._required_with_empty_array_request_body.md | 4 +-- ...y_array_response_body_for_content_types.md | 3 +-- ...ed_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ost_simple_enum_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...tring_type_matches_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...if_the_property_is_missing_request_body.md | 4 +-- ...missing_response_body_for_content_types.md | 3 +-- ...iqueitems_false_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...ost_uniqueitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_uri_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_reference_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- .../post_uri_template_format_request_body.md | 4 +-- ..._format_response_body_for_content_types.md | 3 +-- ...st_pattern_is_not_anchored_request_body.md | 4 +-- ...nchored_response_body_for_content_types.md | 3 +-- .../post_pattern_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...ject_properties_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...es_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ef_that_is_not_a_reference_request_body.md | 4 +-- ...ference_response_body_for_content_types.md | 3 +-- ...ef_in_additionalproperties_request_body.md | 4 +-- ...perties_response_body_for_content_types.md | 3 +-- .../ref_api/post_ref_in_allof_request_body.md | 4 +-- ...n_allof_response_body_for_content_types.md | 3 +-- .../ref_api/post_ref_in_anyof_request_body.md | 4 +-- ...n_anyof_response_body_for_content_types.md | 3 +-- .../ref_api/post_ref_in_items_request_body.md | 4 +-- ...n_items_response_body_for_content_types.md | 3 +-- .../ref_api/post_ref_in_not_request_body.md | 4 +-- ..._in_not_response_body_for_content_types.md | 3 +-- .../ref_api/post_ref_in_oneof_request_body.md | 4 +-- ...n_oneof_response_body_for_content_types.md | 3 +-- .../post_ref_in_property_request_body.md | 4 +-- ...roperty_response_body_for_content_types.md | 3 +-- ...equired_default_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- .../post_required_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._required_with_empty_array_request_body.md | 4 +-- ...y_array_response_body_for_content_types.md | 3 +-- ...ed_with_escaped_characters_request_body.md | 4 +-- ...racters_response_body_for_content_types.md | 3 +-- ...alidate_response_body_for_content_types.md | 3 +-- ...default_response_body_for_content_types.md | 3 +-- ..._itself_response_body_for_content_types.md | 3 +-- ...icators_response_body_for_content_types.md | 3 +-- ...f_oneof_response_body_for_content_types.md | 3 +-- ...t_allof_response_body_for_content_types.md | 3 +-- ...e_types_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...schemas_response_body_for_content_types.md | 3 +-- ...x_types_response_body_for_content_types.md | 3 +-- ...t_anyof_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._arrays_response_body_for_content_types.md | 3 +-- ...ooleans_response_body_for_content_types.md | 3 +-- ..._by_int_response_body_for_content_types.md | 3 +-- ..._number_response_body_for_content_types.md | 3 +-- ..._number_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ...h_false_response_body_for_content_types.md | 3 +-- ...ch_true_response_body_for_content_types.md | 3 +-- ...racters_response_body_for_content_types.md | 3 +-- ..._match0_response_body_for_content_types.md | 3 +-- ..._match1_response_body_for_content_types.md | 3 +-- ...perties_response_body_for_content_types.md | 3 +-- ...roperty_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ...ntegers_response_body_for_content_types.md | 3 +-- ...ion_inf_response_body_for_content_types.md | 3 +-- ...default_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...integer_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...s_empty_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...integer_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...mantics_response_body_for_content_types.md | 3 +-- ...d_items_response_body_for_content_types.md | 3 +-- ...mantics_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...ost_not_response_body_for_content_types.md | 3 +-- ...strings_response_body_for_content_types.md | 3 +-- ..._object_response_body_for_content_types.md | 3 +-- ...numbers_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...objects_response_body_for_content_types.md | 3 +-- ...x_types_response_body_for_content_types.md | 3 +-- ...t_oneof_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ..._schema_response_body_for_content_types.md | 3 +-- ...equired_response_body_for_content_types.md | 3 +-- ...nchored_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...racters_response_body_for_content_types.md | 3 +-- ...ference_response_body_for_content_types.md | 3 +-- ...perties_response_body_for_content_types.md | 3 +-- ...n_allof_response_body_for_content_types.md | 3 +-- ...n_anyof_response_body_for_content_types.md | 3 +-- ...n_items_response_body_for_content_types.md | 3 +-- ..._in_not_response_body_for_content_types.md | 3 +-- ...n_oneof_response_body_for_content_types.md | 3 +-- ...roperty_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...y_array_response_body_for_content_types.md | 3 +-- ...racters_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...strings_response_body_for_content_types.md | 3 +-- ...missing_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ...idation_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._format_response_body_for_content_types.md | 3 +-- ..._array_type_matches_arrays_request_body.md | 4 +-- ..._arrays_response_body_for_content_types.md | 3 +-- ...lean_type_matches_booleans_request_body.md | 4 +-- ...ooleans_response_body_for_content_types.md | 3 +-- ...eger_type_matches_integers_request_body.md | 4 +-- ...ntegers_response_body_for_content_types.md | 3 +-- ...tches_only_the_null_object_request_body.md | 4 +-- ..._object_response_body_for_content_types.md | 3 +-- ...umber_type_matches_numbers_request_body.md | 4 +-- ...numbers_response_body_for_content_types.md | 3 +-- ...bject_type_matches_objects_request_body.md | 4 +-- ...objects_response_body_for_content_types.md | 3 +-- ...tring_type_matches_strings_request_body.md | 4 +-- ...strings_response_body_for_content_types.md | 3 +-- ...iqueitems_false_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...ost_uniqueitems_validation_request_body.md | 4 +-- ...idation_response_body_for_content_types.md | 3 +-- ...pertiesAllowsASchemaWhichShouldValidate.md | 4 +-- ...AdditionalpropertiesAreAllowedByDefault.md | 4 +-- ...lf.AdditionalpropertiesCanExistByItself.md | 4 +-- ...nalpropertiesShouldNotLookInApplicators.md | 4 +-- .../docs/components/schema/allof.Allof.md | 4 +-- ...anyof_oneof.AllofCombinedWithAnyofOneof.md | 4 +-- .../allof_simple_types.AllofSimpleTypes.md | 4 +-- ...of_with_base_schema.AllofWithBaseSchema.md | 4 +-- ...ne_empty_schema.AllofWithOneEmptySchema.md | 4 +-- ...pty_schema.AllofWithTheFirstEmptySchema.md | 4 +-- ...mpty_schema.AllofWithTheLastEmptySchema.md | 4 +-- ..._empty_schemas.AllofWithTwoEmptySchemas.md | 4 +-- .../docs/components/schema/anyof.Anyof.md | 4 +-- .../anyof_complex_types.AnyofComplexTypes.md | 4 +-- ...of_with_base_schema.AnyofWithBaseSchema.md | 4 +-- ...ne_empty_schema.AnyofWithOneEmptySchema.md | 4 +-- ...e_matches_arrays.ArrayTypeMatchesArrays.md | 4 +-- ...hes_booleans.BooleanTypeMatchesBooleans.md | 4 +-- .../docs/components/schema/by_int.ByInt.md | 4 +-- .../components/schema/by_number.ByNumber.md | 4 +-- .../schema/by_small_number.BySmallNumber.md | 4 +-- .../schema/date_time_format.DateTimeFormat.md | 4 +-- .../schema/email_format.EmailFormat.md | 4 +-- ..._match_false.EnumWith0DoesNotMatchFalse.md | 4 +-- ...ot_match_true.EnumWith1DoesNotMatchTrue.md | 4 +-- ...ed_characters.EnumWithEscapedCharacters.md | 4 +-- ...s_not_match0.EnumWithFalseDoesNotMatch0.md | 4 +-- ...es_not_match1.EnumWithTrueDoesNotMatch1.md | 4 +-- .../enums_in_properties.EnumsInProperties.md | 4 +-- .../forbidden_property.ForbiddenProperty.md | 4 +-- .../schema/hostname_format.HostnameFormat.md | 4 +-- ...hes_integers.IntegerTypeMatchesIntegers.md | 4 +-- ...ShouldNotRaiseErrorWhenFloatDivisionInf.md | 4 +-- ...or_default.InvalidStringValueForDefault.md | 4 +-- .../schema/ipv4_format.Ipv4Format.md | 4 +-- .../schema/ipv6_format.Ipv6Format.md | 4 +-- .../json_pointer_format.JsonPointerFormat.md | 4 +-- .../maximum_validation.MaximumValidation.md | 4 +-- ...er.MaximumValidationWithUnsignedInteger.md | 4 +-- .../maxitems_validation.MaxitemsValidation.md | 4 +-- ...axlength_validation.MaxlengthValidation.md | 4 +-- ...pty.Maxproperties0MeansTheObjectIsEmpty.md | 4 +-- ...ties_validation.MaxpropertiesValidation.md | 4 +-- .../minimum_validation.MinimumValidation.md | 4 +-- ...eger.MinimumValidationWithSignedInteger.md | 4 +-- .../minitems_validation.MinitemsValidation.md | 4 +-- ...inlength_validation.MinlengthValidation.md | 4 +-- ...ties_validation.MinpropertiesValidation.md | 4 +-- .../components/schema/model_not.ModelNot.md | 4 +-- ...s.NestedAllofToCheckValidationSemantics.md | 4 +-- ...s.NestedAnyofToCheckValidationSemantics.md | 4 +-- .../schema/nested_items.NestedItems.md | 4 +-- ...s.NestedOneofToCheckValidationSemantics.md | 4 +-- ...ore_complex_schema.NotMoreComplexSchema.md | 4 +-- ...cters_in_strings.NulCharactersInStrings.md | 4 +-- ...object.NullTypeMatchesOnlyTheNullObject.md | 4 +-- ...atches_numbers.NumberTypeMatchesNumbers.md | 4 +-- ...s_validation.ObjectPropertiesValidation.md | 4 +-- ...atches_objects.ObjectTypeMatchesObjects.md | 4 +-- .../docs/components/schema/oneof.Oneof.md | 4 +-- .../oneof_complex_types.OneofComplexTypes.md | 4 +-- ...of_with_base_schema.OneofWithBaseSchema.md | 4 +-- ..._with_empty_schema.OneofWithEmptySchema.md | 4 +-- .../oneof_with_required.OneofWithRequired.md | 4 +-- ...rn_is_not_anchored.PatternIsNotAnchored.md | 4 +-- .../pattern_validation.PatternValidation.md | 4 +-- ...racters.PropertiesWithEscapedCharacters.md | 4 +-- ...nce.PropertyNamedRefThatIsNotAReference.md | 4 +-- ...nalproperties.RefInAdditionalproperties.md | 4 +-- .../schema/ref_in_allof.RefInAllof.md | 4 +-- .../schema/ref_in_anyof.RefInAnyof.md | 4 +-- .../schema/ref_in_items.RefInItems.md | 4 +-- .../components/schema/ref_in_not.RefInNot.md | 4 +-- .../schema/ref_in_oneof.RefInOneof.md | 4 +-- .../schema/ref_in_property.RefInProperty.md | 4 +-- ...lt_validation.RequiredDefaultValidation.md | 4 +-- .../required_validation.RequiredValidation.md | 4 +-- ...with_empty_array.RequiredWithEmptyArray.md | 4 +-- ...haracters.RequiredWithEscapedCharacters.md | 4 +-- ...le_enum_validation.SimpleEnumValidation.md | 4 +-- ...atches_strings.StringTypeMatchesStrings.md | 4 +-- ...DoesNotDoAnythingIfThePropertyIsMissing.md | 4 +-- ...e_validation.UniqueitemsFalseValidation.md | 4 +-- ...eitems_validation.UniqueitemsValidation.md | 4 +-- .../components/schema/uri_format.UriFormat.md | 4 +-- ...uri_reference_format.UriReferenceFormat.md | 4 +-- .../uri_template_format.UriTemplateFormat.md | 4 +-- .../test_post.py | 3 --- .../test_post.py | 1 - .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 8 ------ .../test_post.py | 4 --- .../test_post.py | 2 -- .../test_post.py | 5 ---- .../test_post.py | 1 - .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 1 - .../test_post.py | 4 --- .../test_post.py | 4 --- .../test_post.py | 3 --- .../test_post.py | 2 -- .../test_post.py | 7 ------ .../test_post.py | 10 -------- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 2 -- .../test_post.py | 6 ----- .../test_post.py | 6 ----- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 6 ----- .../test_post.py | 2 -- .../test_post.py | 6 ----- .../test_post.py | 9 ------- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 6 ----- .../test_post.py | 6 ----- .../test_post.py | 6 ----- .../test_post.py | 4 --- .../test_post.py | 4 --- .../test_post.py | 4 --- .../test_post.py | 5 ---- .../test_post.py | 2 -- .../test_post.py | 6 ----- .../test_post.py | 4 --- .../test_post.py | 7 ------ .../test_post.py | 4 --- .../test_post.py | 5 ---- .../test_post.py | 6 ----- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 3 --- .../test_post.py | 2 -- .../test_post.py | 3 --- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 10 -------- .../test_post.py | 9 ------- .../test_post.py | 6 ----- .../test_post.py | 7 ------ .../test_post.py | 4 --- .../test_post.py | 4 --- .../test_post.py | 3 --- .../test_post.py | 2 -- .../test_post.py | 4 --- .../test_post.py | 1 - .../test_post.py | 8 ------ .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 1 - .../test_post.py | 5 ---- .../test_post.py | 1 - .../test_post.py | 2 -- .../test_post.py | 2 -- .../test_post.py | 9 ------- .../test_post.py | 3 --- .../test_post.py | 15 ----------- .../test_post.py | 25 ------------------- .../test_post.py | 6 ----- .../test_post.py | 6 ----- .../test_post.py | 6 ----- .../python/README.md | 5 ++-- .../python/docs/apis/tags/DefaultApi.md | 2 +- .../apis/tags/default_api/post_operators.md | 4 +-- .../addition_operator.AdditionOperator.md | 4 +-- .../components/schema/operator.Operator.md | 4 +-- ...ubtraction_operator.SubtractionOperator.md | 4 +-- .../python/.openapi-generator/VERSION | 2 +- 906 files changed, 1262 insertions(+), 1975 deletions(-) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/README.md b/samples/openapi3/client/3_0_3_unit_test/python/README.md index 8e270e9a422..ad280f26949 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/README.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/README.md @@ -156,11 +156,12 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_property_named_ref_that_is_not_a_reference_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_property_named_ref_that_is_not_a_reference_request_body: %s\n" % e) ``` -## Documentation for API Endpoints +## Endpoints All URIs are relative to *https://someserver.com/v1* @@ -341,7 +342,7 @@ HTTP request | Method | Description **post** /responseBody/postUriReferenceFormatResponseBodyForContentTypes | [PathPostApi](docs/apis/tags/PathPostApi.md).[post_uri_reference_format_response_body_for_content_types](docs/apis/tags/path_post_api/post_uri_reference_format_response_body_for_content_types.md) [ContentTypeJsonApi](docs/apis/tags/ContentTypeJsonApi.md).[post_uri_reference_format_response_body_for_content_types](docs/apis/tags/content_type_json_api/post_uri_reference_format_response_body_for_content_types.md) [FormatApi](docs/apis/tags/FormatApi.md).[post_uri_reference_format_response_body_for_content_types](docs/apis/tags/format_api/post_uri_reference_format_response_body_for_content_types.md) [ResponseContentContentTypeSchemaApi](docs/apis/tags/ResponseContentContentTypeSchemaApi.md).[post_uri_reference_format_response_body_for_content_types](docs/apis/tags/response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes | [PathPostApi](docs/apis/tags/PathPostApi.md).[post_uri_template_format_response_body_for_content_types](docs/apis/tags/path_post_api/post_uri_template_format_response_body_for_content_types.md) [ContentTypeJsonApi](docs/apis/tags/ContentTypeJsonApi.md).[post_uri_template_format_response_body_for_content_types](docs/apis/tags/content_type_json_api/post_uri_template_format_response_body_for_content_types.md) [FormatApi](docs/apis/tags/FormatApi.md).[post_uri_template_format_response_body_for_content_types](docs/apis/tags/format_api/post_uri_template_format_response_body_for_content_types.md) [ResponseContentContentTypeSchemaApi](docs/apis/tags/ResponseContentContentTypeSchemaApi.md).[post_uri_template_format_response_body_for_content_types](docs/apis/tags/response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md) | -## Documentation For Component Schemas (Models) +## Component Schemas - [AdditionalpropertiesAllowsASchemaWhichShouldValidate](docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) - [AdditionalpropertiesAreAllowedByDefault](docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md index 8055747e88b..eda222b38b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AdditionalPropertiesApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**post_additionalproperties_should_not_look_in_applicators_request_body**](additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md) | **post** /requestBody/postAdditionalpropertiesShouldNotLookInApplicatorsRequestBody | [**post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types**](additional_properties_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md) | **post** /responseBody/postAdditionalpropertiesShouldNotLookInApplicatorsResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md index 67b0105de4d..5fa083c7912 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AllOfApi.md @@ -24,4 +24,4 @@ Method | HTTP request | Description [**post_nested_allof_to_check_validation_semantics_request_body**](all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md) | **post** /requestBody/postNestedAllofToCheckValidationSemanticsRequestBody | [**post_nested_allof_to_check_validation_semantics_response_body_for_content_types**](all_of_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md) | **post** /responseBody/postNestedAllofToCheckValidationSemanticsResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md index b60ba932175..cf8f22089ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/AnyOfApi.md @@ -16,4 +16,4 @@ Method | HTTP request | Description [**post_nested_anyof_to_check_validation_semantics_request_body**](any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md) | **post** /requestBody/postNestedAnyofToCheckValidationSemanticsRequestBody | [**post_nested_anyof_to_check_validation_semantics_response_body_for_content_types**](any_of_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md) | **post** /responseBody/postNestedAnyofToCheckValidationSemanticsResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md index dcb75ecb251..9bc4f4ca110 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ContentTypeJsonApi.md @@ -180,4 +180,4 @@ Method | HTTP request | Description [**post_uri_template_format_request_body**](content_type_json_api/post_uri_template_format_request_body.md) | **post** /requestBody/postUriTemplateFormatRequestBody | [**post_uri_template_format_response_body_for_content_types**](content_type_json_api/post_uri_template_format_response_body_for_content_types.md) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md index a40054b510d..7abfd4b3760 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/DefaultApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body**](default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md) | **post** /requestBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingRequestBody | [**post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types**](default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md) | **post** /responseBody/postTheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissingResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md index a4bb1d69663..78e23a955c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/EnumApi.md @@ -22,4 +22,4 @@ Method | HTTP request | Description [**post_simple_enum_validation_request_body**](enum_api/post_simple_enum_validation_request_body.md) | **post** /requestBody/postSimpleEnumValidationRequestBody | [**post_simple_enum_validation_response_body_for_content_types**](enum_api/post_simple_enum_validation_response_body_for_content_types.md) | **post** /responseBody/postSimpleEnumValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md index 167d122cfc5..7e8fac06f40 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/FormatApi.md @@ -24,4 +24,4 @@ Method | HTTP request | Description [**post_uri_template_format_request_body**](format_api/post_uri_template_format_request_body.md) | **post** /requestBody/postUriTemplateFormatRequestBody | [**post_uri_template_format_response_body_for_content_types**](format_api/post_uri_template_format_response_body_for_content_types.md) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md index 31bd9c58b9d..993cb4bdcef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ItemsApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_nested_items_request_body**](items_api/post_nested_items_request_body.md) | **post** /requestBody/postNestedItemsRequestBody | [**post_nested_items_response_body_for_content_types**](items_api/post_nested_items_response_body_for_content_types.md) | **post** /responseBody/postNestedItemsResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md index e35ac6d5eac..c21f4c430eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxItemsApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_maxitems_validation_request_body**](max_items_api/post_maxitems_validation_request_body.md) | **post** /requestBody/postMaxitemsValidationRequestBody | [**post_maxitems_validation_response_body_for_content_types**](max_items_api/post_maxitems_validation_response_body_for_content_types.md) | **post** /responseBody/postMaxitemsValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md index 722eca67d90..ecb57383db3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxLengthApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_maxlength_validation_request_body**](max_length_api/post_maxlength_validation_request_body.md) | **post** /requestBody/postMaxlengthValidationRequestBody | [**post_maxlength_validation_response_body_for_content_types**](max_length_api/post_maxlength_validation_response_body_for_content_types.md) | **post** /responseBody/postMaxlengthValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md index 400ba61dbfd..98d6cfa9625 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaxPropertiesApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_maxproperties_validation_request_body**](max_properties_api/post_maxproperties_validation_request_body.md) | **post** /requestBody/postMaxpropertiesValidationRequestBody | [**post_maxproperties_validation_response_body_for_content_types**](max_properties_api/post_maxproperties_validation_response_body_for_content_types.md) | **post** /responseBody/postMaxpropertiesValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md index 6c43e1f3172..f6c949aaa45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MaximumApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_maximum_validation_with_unsigned_integer_request_body**](maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md) | **post** /requestBody/postMaximumValidationWithUnsignedIntegerRequestBody | [**post_maximum_validation_with_unsigned_integer_response_body_for_content_types**](maximum_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md) | **post** /responseBody/postMaximumValidationWithUnsignedIntegerResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md index 6e0434f7524..ab128990947 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinItemsApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_minitems_validation_request_body**](min_items_api/post_minitems_validation_request_body.md) | **post** /requestBody/postMinitemsValidationRequestBody | [**post_minitems_validation_response_body_for_content_types**](min_items_api/post_minitems_validation_response_body_for_content_types.md) | **post** /responseBody/postMinitemsValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md index 9d8237dd7b7..3c0de36bee8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinLengthApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_minlength_validation_request_body**](min_length_api/post_minlength_validation_request_body.md) | **post** /requestBody/postMinlengthValidationRequestBody | [**post_minlength_validation_response_body_for_content_types**](min_length_api/post_minlength_validation_response_body_for_content_types.md) | **post** /responseBody/postMinlengthValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md index b585ddbc9e9..71a91d4b1bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinPropertiesApi.md @@ -8,4 +8,4 @@ Method | HTTP request | Description [**post_minproperties_validation_request_body**](min_properties_api/post_minproperties_validation_request_body.md) | **post** /requestBody/postMinpropertiesValidationRequestBody | [**post_minproperties_validation_response_body_for_content_types**](min_properties_api/post_minproperties_validation_response_body_for_content_types.md) | **post** /responseBody/postMinpropertiesValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md index 9f73b3330df..6468ba3c7a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MinimumApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_minimum_validation_with_signed_integer_request_body**](minimum_api/post_minimum_validation_with_signed_integer_request_body.md) | **post** /requestBody/postMinimumValidationWithSignedIntegerRequestBody | [**post_minimum_validation_with_signed_integer_response_body_for_content_types**](minimum_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md) | **post** /responseBody/postMinimumValidationWithSignedIntegerResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md index 9cdade22344..f15ce997c8f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ModelNotApi.md @@ -12,4 +12,4 @@ Method | HTTP request | Description [**post_not_request_body**](model_not_api/post_not_request_body.md) | **post** /requestBody/postNotRequestBody | [**post_not_response_body_for_content_types**](model_not_api/post_not_response_body_for_content_types.md) | **post** /responseBody/postNotResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md index d4cd165fc8d..586140e0502 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/MultipleOfApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body**](multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md) | **post** /requestBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfRequestBody | [**post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types**](multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md) | **post** /responseBody/postInvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInfResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md index 306493a7c1b..ef8d659e500 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OneOfApi.md @@ -18,4 +18,4 @@ Method | HTTP request | Description [**post_oneof_with_required_request_body**](one_of_api/post_oneof_with_required_request_body.md) | **post** /requestBody/postOneofWithRequiredRequestBody | [**post_oneof_with_required_response_body_for_content_types**](one_of_api/post_oneof_with_required_response_body_for_content_types.md) | **post** /responseBody/postOneofWithRequiredResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md index c0be74e6334..75ecae227fc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/OperationRequestBodyApi.md @@ -93,4 +93,4 @@ Method | HTTP request | Description [**post_uri_reference_format_request_body**](operation_request_body_api/post_uri_reference_format_request_body.md) | **post** /requestBody/postUriReferenceFormatRequestBody | [**post_uri_template_format_request_body**](operation_request_body_api/post_uri_template_format_request_body.md) | **post** /requestBody/postUriTemplateFormatRequestBody | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md index 6ad04e64e6f..9ad5223323d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PathPostApi.md @@ -180,4 +180,4 @@ Method | HTTP request | Description [**post_uri_template_format_request_body**](path_post_api/post_uri_template_format_request_body.md) | **post** /requestBody/postUriTemplateFormatRequestBody | [**post_uri_template_format_response_body_for_content_types**](path_post_api/post_uri_template_format_response_body_for_content_types.md) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md index bf3e99eb9e2..f4623c2c76b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PatternApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_pattern_validation_request_body**](pattern_api/post_pattern_validation_request_body.md) | **post** /requestBody/postPatternValidationRequestBody | [**post_pattern_validation_response_body_for_content_types**](pattern_api/post_pattern_validation_response_body_for_content_types.md) | **post** /responseBody/postPatternValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md index 2bb99b481cc..80dac9aad25 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/PropertiesApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_properties_with_escaped_characters_request_body**](properties_api/post_properties_with_escaped_characters_request_body.md) | **post** /requestBody/postPropertiesWithEscapedCharactersRequestBody | [**post_properties_with_escaped_characters_response_body_for_content_types**](properties_api/post_properties_with_escaped_characters_response_body_for_content_types.md) | **post** /responseBody/postPropertiesWithEscapedCharactersResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md index 9885a112249..d4c9b4ce2be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RefApi.md @@ -22,4 +22,4 @@ Method | HTTP request | Description [**post_ref_in_property_request_body**](ref_api/post_ref_in_property_request_body.md) | **post** /requestBody/postRefInPropertyRequestBody | [**post_ref_in_property_response_body_for_content_types**](ref_api/post_ref_in_property_response_body_for_content_types.md) | **post** /responseBody/postRefInPropertyResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md index 7969e858dbb..661c45e6f41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/RequiredApi.md @@ -14,4 +14,4 @@ Method | HTTP request | Description [**post_required_with_escaped_characters_request_body**](required_api/post_required_with_escaped_characters_request_body.md) | **post** /requestBody/postRequiredWithEscapedCharactersRequestBody | [**post_required_with_escaped_characters_response_body_for_content_types**](required_api/post_required_with_escaped_characters_response_body_for_content_types.md) | **post** /responseBody/postRequiredWithEscapedCharactersResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md index fcec6082bb2..9ee5b3bd536 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ResponseContentContentTypeSchemaApi.md @@ -93,4 +93,4 @@ Method | HTTP request | Description [**post_uri_reference_format_response_body_for_content_types**](response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md) | **post** /responseBody/postUriReferenceFormatResponseBodyForContentTypes | [**post_uri_template_format_response_body_for_content_types**](response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md) | **post** /responseBody/postUriTemplateFormatResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md index f8c1b0f6ed8..15bb0590364 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/TypeApi.md @@ -20,4 +20,4 @@ Method | HTTP request | Description [**post_string_type_matches_strings_request_body**](type_api/post_string_type_matches_strings_request_body.md) | **post** /requestBody/postStringTypeMatchesStringsRequestBody | [**post_string_type_matches_strings_response_body_for_content_types**](type_api/post_string_type_matches_strings_response_body_for_content_types.md) | **post** /responseBody/postStringTypeMatchesStringsResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md index 9edbf1138b6..6dcc4d59eef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/UniqueItemsApi.md @@ -10,4 +10,4 @@ Method | HTTP request | Description [**post_uniqueitems_validation_request_body**](unique_items_api/post_uniqueitems_validation_request_body.md) | **post** /requestBody/postUniqueitemsValidationRequestBody | [**post_uniqueitems_validation_response_body_for_content_types**](unique_items_api/post_uniqueitems_validation_response_body_for_content_types.md) | **post** /responseBody/postUniqueitemsValidationResponseBodyForContentTypes | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index df397a0f49b..b34c88d6294 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AdditionalPropertiesApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md index ac5b9408b45..0fd49625dae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md index c7ef277a903..342705afc62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_are_allowed_by_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AdditionalPropertiesApi->post_additionalproperties_are_allowed_by_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md index cf050464ce8..010d6cd22a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md index 45f4285ac57..80620509d5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_can_exist_by_itself_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AdditionalPropertiesApi->post_additionalproperties_can_exist_by_itself_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md index d95007df3d2..a9ef360d873 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index eaf1d988ba1..e0264c739cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_should_not_look_in_applicators_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AdditionalPropertiesApi->post_additionalproperties_should_not_look_in_applicators_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md index f55dd5785db..5640c01ca22 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AdditionalPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md index f3663846146..0d9e21de9fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_combined_with_anyof_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_combined_with_anyof_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md index 0bddf092eae..e2c52314cd1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md index 3afd4949ad1..6563ec383a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_response_body_for_content_types.md index df292eb965b..dbf4f912a9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md index cffc7621e49..1ac0c83b174 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_simple_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_simple_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_response_body_for_content_types.md index 47bfe0a305f..c5b5ea2b68f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md index 960fd18e6e7..05b8fb1fc0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_response_body_for_content_types.md index 1ab135a3de2..857a6c568c7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md index 693da86a44e..4fb728429e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_response_body_for_content_types.md index ba8a235e6f7..c7b1c1fbf9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md index 3df22a092d5..a13d5c6f0a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_first_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_with_the_first_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md index 9628533a345..4758b16d353 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md index 4ad39c6fe58..49383d77da3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_last_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_with_the_last_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md index 0aedf98b4d7..6f17379e3f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md index b3ae531ce70..0e82099c23d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_two_empty_schemas_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_allof_with_two_empty_schemas_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md index e90b5f56991..d08b4c3ab07 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md index f32b0684367..2cde9cebece 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_allof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AllOfApi->post_nested_allof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md index 71b6b979ecb..8e6980baea8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AllOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md index 58954127359..046316b6b52 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AnyOfApi->post_anyof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_response_body_for_content_types.md index d890042b4d7..b2261c5ed09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md index 33dde0fcd86..db201b416b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AnyOfApi->post_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_response_body_for_content_types.md index 81a79251eb7..909997479af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md index f60295433c8..514ce47f326 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AnyOfApi->post_anyof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_response_body_for_content_types.md index 6a7da43d7b9..43c0da9c19b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md index 103c9a5f6c1..791be7c2eaa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AnyOfApi->post_anyof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md index b1b6d6fda66..f6f21037b52 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md index 752aa69fc1d..4b38d8575d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_anyof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling AnyOfApi->post_nested_anyof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md index 42fe68c20c1..cfe9777f6ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../AnyOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index d2efec0bb7b..42d9cacd7e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md index c6e9de5a646..25e2a4ceb2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md index a6fd283d012..613d88d4be6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_are_allowed_by_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_additionalproperties_are_allowed_by_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md index 0e541d83891..874aca33b80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md index 812f7bdadaf..d99f45b086d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_can_exist_by_itself_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_additionalproperties_can_exist_by_itself_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md index 9d52422148e..b1c7dc0c9d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index 2fc18e6154a..38f209b25ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_should_not_look_in_applicators_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_additionalproperties_should_not_look_in_applicators_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md index 0de7a356928..508bf98497e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md index 1971f0a6c71..8bda26fa9e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_combined_with_anyof_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_combined_with_anyof_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md index 5dd50c018ce..26d049f30cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md index 687e33ecfdf..23ff76e6d94 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_response_body_for_content_types.md index e4e6ff6d23e..69fc697ff18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md index 23f85bc23a1..f6ed8390a48 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_simple_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_simple_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_response_body_for_content_types.md index 359298d297f..010e8296d2c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md index 4574b5418cd..46af7d8cf0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_response_body_for_content_types.md index 7965f209a78..da2493f4588 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md index 43beeb38833..be3a2613eae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_response_body_for_content_types.md index cd2a626c3d7..ba5a50c63c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md index f7859eaf347..25b882a9c80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_first_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_with_the_first_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md index 808bb5da6fb..85aee00826b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md index 94a9f3c9363..28d3b9d8b3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_last_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_with_the_last_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md index b9a2c7fcd56..80960b59654 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md index c83ed774120..a27784af855 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_two_empty_schemas_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_allof_with_two_empty_schemas_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md index e482e0ce188..3fad78fd820 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md index aded5c1edb2..d88153a02ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_anyof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_response_body_for_content_types.md index 925300609f3..837729e5bc6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md index 08985ce0240..5a1df98c46d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_response_body_for_content_types.md index 2f1e540ce15..532fbd9ec1e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md index c2f05190c53..c0d3027d597 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_anyof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_response_body_for_content_types.md index 1057f00b673..347b1e206e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md index e49b6887764..43783a5b848 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_anyof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md index 7a1537b77d3..2c29df5a94a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md index 6e454f22f84..d9c1266f584 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_array_type_matches_arrays_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_array_type_matches_arrays_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_response_body_for_content_types.md index 145396a5e18..45ba4d2e791 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md index 7ed4d7c9f55..4a71843a491 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_boolean_type_matches_booleans_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_boolean_type_matches_booleans_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_response_body_for_content_types.md index 2d30d00e468..1eada6a6046 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md index c6700571c95..72f18ce3835 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_int_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_by_int_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_response_body_for_content_types.md index 572fecc6fb1..29ac59634c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md index 80b86e52623..086aadea09f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_by_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_response_body_for_content_types.md index e486717bae7..4df9f890c0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md index aad82d549ea..536466277dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_small_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_by_small_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_response_body_for_content_types.md index 66a5c238cfc..4e5443127fc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md index fa63ff642eb..c8430984712 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_date_time_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_date_time_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_response_body_for_content_types.md index f1f70978f0c..ed7250ee9f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md index 45f17d226fa..cef175fb1ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_email_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_email_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_response_body_for_content_types.md index 306b4207500..9cacf57af6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md index c28bbb7866a..c2b7e067f79 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with0_does_not_match_false_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enum_with0_does_not_match_false_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md index 752018eb259..e6ac22a143b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md index cf2893b78fc..a73f3f5f1f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with1_does_not_match_true_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enum_with1_does_not_match_true_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md index b37d5d0c939..bb89d102f5c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md index 6a0e4875665..b748bbe1f73 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enum_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_response_body_for_content_types.md index 3bde936686a..8fcd8debf48 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md index fb0a1ea9e48..6d377b16504 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_false_does_not_match0_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enum_with_false_does_not_match0_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md index a0cdef9028f..3e2fd164aa1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md index c3f1a0d44ce..8086faf6069 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_true_does_not_match1_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enum_with_true_does_not_match1_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md index 329e3ec4712..db1b04e488a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md index 72bebb95907..70e492e27da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enums_in_properties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_enums_in_properties_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_response_body_for_content_types.md index b1855e48293..3e9e1f8c499 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md index 3b926381870..653ef641ad8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_forbidden_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_forbidden_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_response_body_for_content_types.md index 399b36632ac..b3e240ce2a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md index c4c5ba71779..e1219c589f1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_hostname_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_hostname_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_response_body_for_content_types.md index 1c5df696a6d..3a27ecbdb56 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md index af2ae7b0814..cedab122b42 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_integer_type_matches_integers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_integer_type_matches_integers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_response_body_for_content_types.md index 4a89b2871a1..cb4e24bc03a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index e260dc48454..a6fc8bddaf4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md index f87e7fa3c7b..61511ece51c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md index 11c1b2af46f..59cb0da8eb4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_string_value_for_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_invalid_string_value_for_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_response_body_for_content_types.md index 43fd678603a..2d04671f4c5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md index 54d096f061c..2e7f1ec88c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv4_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ipv4_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_response_body_for_content_types.md index f53b34403f7..47574d8c5de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md index c473d9e7e91..c7a32bc6878 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv6_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ipv6_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_response_body_for_content_types.md index 7fcf063fc74..91f45a20ae2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md index 49ad40a0332..2eb898638db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_json_pointer_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_json_pointer_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_response_body_for_content_types.md index 84394ba4c48..3048486cc44 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md index 6492a735ff5..532d127d2ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maximum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_response_body_for_content_types.md index f015548432a..ee0515fcf69 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md index dce79e06325..11a308c6992 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_with_unsigned_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maximum_validation_with_unsigned_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md index 6582e791bb8..0459e9f1710 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md index 2742d2e2ffc..f2b324667d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maxitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_response_body_for_content_types.md index f7e854ac1ed..0ff5f0f9ab6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md index 8049a52708a..0b072abbfff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maxlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_response_body_for_content_types.md index 050580c7a59..1c47f82ddb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md index 76c07794ed7..f27198aba99 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties0_means_the_object_is_empty_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maxproperties0_means_the_object_is_empty_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md index 39bbeba645f..f928eb33d50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md index 9e8e59782dc..4a0d225a93d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_maxproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_response_body_for_content_types.md index 99ac0c2c561..681aa885226 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md index 1506e0d4c2f..8dbd66b1071 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_minimum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_response_body_for_content_types.md index ae8c56935d6..2307c385359 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md index 1b9351f68fc..34d8c4e0774 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_with_signed_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_minimum_validation_with_signed_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md index 50d84e49e4f..7f5130d9487 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md index 299b795c56a..949fdf2e3ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_minitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_response_body_for_content_types.md index 29a10c968d6..f1a8a300f2f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md index d448f9aa35c..7274dede238 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_minlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_response_body_for_content_types.md index 6008cba11b0..75077aaafa8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md index 2d5c9047d9c..cde30ecddee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_minproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_response_body_for_content_types.md index d00e53da516..9b49d1332d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md index 1b220698ce0..65895093ade 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_allof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_nested_allof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md index 863845582c2..edb09552f62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md index dd8905da21f..1c3883eca80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_anyof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_nested_anyof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md index f4c76b8ccf0..8005e2323fe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md index 52b4617f861..ba5608679a7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md @@ -34,6 +34,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_nested_items_request_body: %s\n" % e) ``` @@ -72,5 +73,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_response_body_for_content_types.md index 6887b6338e2..1fb095a6e30 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md index 2654bb11f86..25161864548 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_oneof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_nested_oneof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md index 811cc95d352..6e1ed330324 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md index 4dc24bed308..c61b1f8ad03 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_more_complex_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_not_more_complex_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_response_body_for_content_types.md index ce0756e7f75..58de762b68f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md index ae7becd9290..19467e99992 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_response_body_for_content_types.md index bb70e9d18fa..ad9782f457b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md index 75c51f0561d..51b18267c49 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nul_characters_in_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_nul_characters_in_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_response_body_for_content_types.md index 944fd578fee..14ca1e2627f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md index 46bb9a485ab..5d8b9ff2747 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_null_type_matches_only_the_null_object_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_null_type_matches_only_the_null_object_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md index ae7ca0184d7..77eed2e3a74 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md index 93b4dd14bba..7b8e4e2b514 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_number_type_matches_numbers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_number_type_matches_numbers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_response_body_for_content_types.md index f69206b41a3..77c4dcca102 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md index 196f237dd16..2a1f7289baf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_properties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_object_properties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_response_body_for_content_types.md index b4930af5874..b982a236423 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md index 86e8afee20c..e7cda0eac50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_type_matches_objects_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_object_type_matches_objects_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_response_body_for_content_types.md index 54c15a25bb5..68a1a8dedd4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md index 9f077538b02..56299b82d97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_oneof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_response_body_for_content_types.md index c04877e9691..080f634b18a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md index c0f3937cef5..6dc699e0a83 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_response_body_for_content_types.md index 5c5c120e2ce..9ea3e070330 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md index d7cd33e9ead..6c55e5fe950 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_oneof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_response_body_for_content_types.md index d68240db501..32924180c20 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md index 99d5ec05cd6..047a8c007c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_oneof_with_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_response_body_for_content_types.md index 464c3e2a699..0f28213b16b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md index 1f151f186cc..879650b99e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_required_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_oneof_with_required_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_response_body_for_content_types.md index 2e84ceeab0f..6001c6fb475 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md index 5824c366b0a..9b69f460462 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_is_not_anchored_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_pattern_is_not_anchored_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_response_body_for_content_types.md index 38ba3f303ae..d3a26e458b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md index b2ef3bcb675..91887888ed1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_pattern_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_response_body_for_content_types.md index 9e63c4b240c..81d10adac80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md index 9eb455979c9..2982a1cc332 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_properties_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_properties_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_response_body_for_content_types.md index 664f5636326..d88e56819d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md index ad5572974f5..30c3c3e36ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_property_named_ref_that_is_not_a_reference_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_property_named_ref_that_is_not_a_reference_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md index 5375c45f66c..90b1a0e2d75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md index def93fdc9e9..a1411a92040 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_additionalproperties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_additionalproperties_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_response_body_for_content_types.md index ab97b0e1e5d..fce2a3cd982 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md index bfacf400a10..42c800cc848 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_response_body_for_content_types.md index a566f7763dc..9f9a45d1a0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md index 7a96a661a39..1ce81a549b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_response_body_for_content_types.md index c709a94a7ba..9734ed2a55b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md index e66832e2ccc..0aa22128028 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_items_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_response_body_for_content_types.md index c2b61e65327..227bf4a8db0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md index 5e38a177f40..a2ee9c36b78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_response_body_for_content_types.md index 8de149de763..c459b4e6767 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md index 3e1ce96fabf..9aa956ffceb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_response_body_for_content_types.md index dec9d68f380..4627275b8b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md index 78473f8c7ee..7c5f569bc06 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_ref_in_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_response_body_for_content_types.md index 9f436bac506..2b904d5affc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md index 229b6b4f341..a3d32fb77d2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_default_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_required_default_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_response_body_for_content_types.md index 9351ac369fc..80478c969ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md index a0620c0b142..a0254569d3a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_required_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_response_body_for_content_types.md index af3e6409f1c..992ee46aa0b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md index 564ce1b047b..364d9ef77ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_empty_array_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_required_with_empty_array_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_response_body_for_content_types.md index a52d5637f9a..5933159e6b6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md index 516bbe66988..259161847b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_required_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_response_body_for_content_types.md index 3b6c366d3bb..6e70df2352c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md index a8818284af0..93e4c0d201e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_simple_enum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_simple_enum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_response_body_for_content_types.md index efdf4f39e49..ecb618d3f02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md index 8a465db56b5..7a6f823b090 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_string_type_matches_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_string_type_matches_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_response_body_for_content_types.md index 62a7fe6dd09..15c9aa7fba9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index 10668c9a2b6..68249f77456 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md index 2299be08e2a..d956c8bf524 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md index 2f3991e376f..621c211146e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_false_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_uniqueitems_false_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_response_body_for_content_types.md index 8daf5b053d1..5720d802aec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md index 28c53bac3b5..3dd8c6b6fe8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_uniqueitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_response_body_for_content_types.md index a659c72e89f..b7e226e1371 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md index 4926aeff2b9..df7580fae12 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_uri_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_response_body_for_content_types.md index ce4f10d862a..8553b23ea94 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md index c1c2ded133b..d93bf83fd11 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_reference_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_uri_reference_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_response_body_for_content_types.md index 9e6b7c8ab50..0e1adc479a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md index 5189d74f124..de93abb3f3e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_template_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ContentTypeJsonApi->post_uri_template_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_response_body_for_content_types.md index d27441594d7..48f71d2431a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ContentTypeJsonApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md index 193993e2323..c220a9b8ca0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_string_value_for_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling DefaultApi->post_invalid_string_value_for_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_response_body_for_content_types.md index 3b9a35e3737..9f1c08a7108 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index 22f01664951..a3c88f4ab22 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling DefaultApi->post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md index 5ad6002a28e..02fa9956a5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md index d50b5b9dd04..3534a24458b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with0_does_not_match_false_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enum_with0_does_not_match_false_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md index 6cd928f1598..aea3376bbe9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md index c0cb29718ac..16dbb6130d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with1_does_not_match_true_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enum_with1_does_not_match_true_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md index daaf4c990b2..7710df74fd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md index 3f5832adf15..35d1a4e1728 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enum_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_response_body_for_content_types.md index e271b2c2002..245101e6c71 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md index 1c470c87c0e..fd1df4229f2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_false_does_not_match0_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enum_with_false_does_not_match0_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md index a28fc764a39..ae3da569c81 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md index 93f8ce202da..ed1e72a05c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_true_does_not_match1_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enum_with_true_does_not_match1_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md index 381cc4ae770..f85f8f6cc05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md index d40d1b2d727..96a67cd3055 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enums_in_properties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_enums_in_properties_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_response_body_for_content_types.md index 4a9a99b6ce2..f395649e9b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md index b4f97d10610..ba9d42bb9ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nul_characters_in_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_nul_characters_in_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_response_body_for_content_types.md index 8ebe21e0a8e..055f35460b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md index ace6e643574..b38d6fd6d40 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_simple_enum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling EnumApi->post_simple_enum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_response_body_for_content_types.md index 04eb793530d..735fee75b27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../EnumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md index 87516ab26ed..2edf859ac61 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_date_time_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_date_time_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_response_body_for_content_types.md index c0ac2a4ffdd..1e9b1138505 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md index d75310f4b46..1c92deda46b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_email_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_email_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_response_body_for_content_types.md index 3979e53f447..37e41ce2d96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md index 9c1d5f1fd07..42971593562 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_hostname_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_hostname_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_response_body_for_content_types.md index e448e55b5f3..c0f49297328 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md index b72089376f8..6401d6d6ce8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv4_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_ipv4_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_response_body_for_content_types.md index 8e82b89c702..2e73a4fefc8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md index 472c4992579..4bccc951291 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv6_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_ipv6_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_response_body_for_content_types.md index 520958a93d1..b57eabd4104 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md index 302780ad828..5ce1dbf7737 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_json_pointer_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_json_pointer_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_response_body_for_content_types.md index dab8d91481e..534260f1848 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md index 4aae57bba1d..aa87327a00c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_uri_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_response_body_for_content_types.md index d8c49970750..0d6844580e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md index 1553a98fb5c..9b62782a5c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_reference_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_uri_reference_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_response_body_for_content_types.md index f49143cf8c8..8cf076d8c38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md index 6f096543c13..364b157d252 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_template_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling FormatApi->post_uri_template_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_response_body_for_content_types.md index 686858f4821..ba3a45fed05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../FormatApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md index b8ada4496c1..d3d5672741a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md @@ -34,6 +34,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ItemsApi->post_nested_items_request_body: %s\n" % e) ``` @@ -72,5 +73,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_response_body_for_content_types.md index 5837d9c9593..02e6d536252 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md index cad5cddecc5..874809c6117 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaxItemsApi->post_maxitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaxItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_response_body_for_content_types.md index 2945b8819ff..c30301bbc5f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaxItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md index a16e47cc9f2..f830f22242e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaxLengthApi->post_maxlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaxLengthApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxLengthApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_response_body_for_content_types.md index ad02bd0469c..de3d2381658 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaxLengthApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxLengthApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md index 75fa09cbd76..7ac661151dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties0_means_the_object_is_empty_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaxPropertiesApi->post_maxproperties0_means_the_object_is_empty_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md index 3c11468367f..37dda411c70 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md index e3c9bb5c565..c7ca8da0d95 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaxPropertiesApi->post_maxproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_response_body_for_content_types.md index f120214737f..2dde0c679ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaxPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md index 62338b38abe..916d4364a76 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaximumApi->post_maximum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_response_body_for_content_types.md index 2256b26bddc..2e6c687191b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md index 70dbdb7f24f..ec964a79b01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_with_unsigned_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MaximumApi->post_maximum_validation_with_unsigned_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md index 3431b9d65f0..d8fac7b86d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MaximumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md index e85281733a5..98599689abd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MinItemsApi->post_minitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MinItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_response_body_for_content_types.md index 78c878ff54c..ae3ee11e91e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MinItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md index a89e7572863..6be57fc610a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MinLengthApi->post_minlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MinLengthApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinLengthApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_response_body_for_content_types.md index 245cb23a48d..e8cd4f3320a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MinLengthApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinLengthApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md index 3aa3a094d98..61f01ad4371 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MinPropertiesApi->post_minproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MinPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_response_body_for_content_types.md index bbcfd9865d1..c2acf61f16a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MinPropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinPropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md index 1bdd47fdb83..839827a6372 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MinimumApi->post_minimum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_response_body_for_content_types.md index 6f0cd2eb9b5..2234b673ab0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md index 3d9a865b8b4..283ac9514f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_with_signed_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MinimumApi->post_minimum_validation_with_signed_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md index fadf2a27f5e..d150d2b41b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MinimumApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md index e0f236bb970..5c93f502dc9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_forbidden_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ModelNotApi->post_forbidden_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_response_body_for_content_types.md index eb9b3e1b1b1..be5365a2537 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md index 6fa33f8b917..e605ddc4269 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_more_complex_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ModelNotApi->post_not_more_complex_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_response_body_for_content_types.md index 673768b9d83..8cea316fb20 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md index aaf5e0bc25e..ebd8703beda 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling ModelNotApi->post_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_response_body_for_content_types.md index 421a8c19332..bb3cca26621 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ModelNotApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md index 23bae1626ba..fe7fb296ddf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_int_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MultipleOfApi->post_by_int_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_response_body_for_content_types.md index 67c160b39bd..0b3e8c5f841 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md index 15b234c0866..523a69cf1a0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MultipleOfApi->post_by_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_response_body_for_content_types.md index 227d82aaba1..acae7135bdb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md index 3e50e6715fd..f8d9a50fe05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_small_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MultipleOfApi->post_by_small_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_response_body_for_content_types.md index 6b4cb198bd7..578203005a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index 711ad30147e..b7cf3113f37 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling MultipleOfApi->post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md index 74a50fc1de4..2cb50a65f28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../MultipleOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md index b26df6a68b6..5b63d54275a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_oneof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_nested_oneof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md index 589e2ecd4c0..2e6ed285d2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md index 40590385a4a..8f9b87e0d70 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_oneof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_response_body_for_content_types.md index e8cd941e3f8..7e0f6416244 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md index 4efb33b6671..b8a1973bf0b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_response_body_for_content_types.md index a4509e461f2..03dcb7a9b08 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md index 20e51d5979f..5950dfda25c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_oneof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_response_body_for_content_types.md index ad3d3f8d92e..28ee6093236 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md index 263e24deb57..045e09328eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_oneof_with_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_response_body_for_content_types.md index 35d7e4bc462..794907f4a57 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md index 5a2014e88d5..8a34cfbccae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_required_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OneOfApi->post_oneof_with_required_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_response_body_for_content_types.md index 53768cbc5e9..f37486853f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OneOfApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index e9ad5aadc07..4741658f7c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md index 3fd94d60318..d5a04c08d20 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_are_allowed_by_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_additionalproperties_are_allowed_by_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md index 712b6c2a692..900f7cdc1c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_can_exist_by_itself_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_additionalproperties_can_exist_by_itself_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index 3445af198a9..c656862f190 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_should_not_look_in_applicators_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_additionalproperties_should_not_look_in_applicators_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md index 7d295f7b256..443aaa473a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_combined_with_anyof_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_combined_with_anyof_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md index d5d2b667699..d161be3fce2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md index 1e20d9c62a7..a48ad332e15 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_simple_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_simple_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md index 5b93d7b3f89..126eb844f3f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md index ba68044fa0f..eb830d9a9c3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md index 03123e86fbb..651f0903912 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_first_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_with_the_first_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md index 6aa877b2c04..85e6109399d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_last_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_with_the_last_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md index ed34606b50e..ef2fc331f4e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_two_empty_schemas_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_allof_with_two_empty_schemas_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md index 85735c00aa0..49a5cbadb93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_anyof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md index 074d4a7a9d1..6cc77a80fda 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md index 1d3813ddc58..5e721f8b993 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_anyof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md index 81ebe53526c..7f721a30773 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_anyof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md index f4eaba7675f..b9fa4bae356 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_array_type_matches_arrays_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_array_type_matches_arrays_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md index e54dbe878a4..485795c934a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_boolean_type_matches_booleans_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_boolean_type_matches_booleans_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md index cfb92357576..2ee7bb26cc3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_int_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_by_int_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md index 64e6f846b5b..80e9090dac5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_by_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md index cde1d0cb960..d39024bd052 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_small_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_by_small_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md index f2c3649fc87..31ac487cd0c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_date_time_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_date_time_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md index f7a42e81a2b..c04c5385f36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_email_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_email_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md index 2ad3145323e..8471611dd2e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with0_does_not_match_false_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enum_with0_does_not_match_false_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md index 172c94e8cc1..2c8a5d97d50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with1_does_not_match_true_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enum_with1_does_not_match_true_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md index b698558ac31..43d20516eef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enum_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md index bcfe3f911ae..4e732b6f580 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_false_does_not_match0_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enum_with_false_does_not_match0_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md index 8a3c9af8699..0412874c292 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_true_does_not_match1_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enum_with_true_does_not_match1_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md index 01baca1cdbc..145c46aea4f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enums_in_properties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_enums_in_properties_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md index 127fe33a406..d2a38aef430 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_forbidden_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_forbidden_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md index 8ecdabda378..8edfbbe4bb9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_hostname_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_hostname_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md index 03bd1621375..daa7ef95051 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_integer_type_matches_integers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_integer_type_matches_integers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index 305456884f1..3c6f2c6fad3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md index 0406d799b6b..bf0b389786a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_string_value_for_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_invalid_string_value_for_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md index dfaa5ad3110..29fba25aae6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv4_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ipv4_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md index 5b9db1d2cdc..e57a463a016 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv6_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ipv6_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md index 47a08ff456c..32861406c5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_json_pointer_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_json_pointer_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md index de1cc466748..60dcf82efbd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maximum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md index 20b9f86dc76..000f73ca0ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_with_unsigned_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maximum_validation_with_unsigned_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md index 32a86807ecf..fc3a7eaa39b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maxitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md index a991444cab0..d53c295df09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maxlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md index 27fd8fa6eed..bfa646f38ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties0_means_the_object_is_empty_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maxproperties0_means_the_object_is_empty_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md index ad15cc916e2..c0a0454a507 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_maxproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md index c2583a7b396..046beddad97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_minimum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md index fdc1cbb7fc8..2a6ab6de7e1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_with_signed_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_minimum_validation_with_signed_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md index 264f8bfe3d9..032892e8097 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_minitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md index f2602ae076f..3c2b0f19b04 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_minlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md index ab556606cf5..b2b72e4c4ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_minproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md index 7c38e4ac3dc..c3b740e83cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_allof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_nested_allof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md index d14f4fbc7bc..95a40af050b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_anyof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_nested_anyof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md index e7829df7c3d..d2a0c241dbe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md @@ -34,6 +34,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_nested_items_request_body: %s\n" % e) ``` @@ -72,5 +73,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md index 58b8811d2f8..c00800dec99 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_oneof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_nested_oneof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md index c0e95b9c939..c7590f094b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_more_complex_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_not_more_complex_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md index 74f383bd444..e3e45ab6e36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md index 56770b9fe8b..d130eb9b860 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nul_characters_in_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_nul_characters_in_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md index 4869f55762c..17639e931e4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_null_type_matches_only_the_null_object_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_null_type_matches_only_the_null_object_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md index 6b898da4523..46450724406 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_number_type_matches_numbers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_number_type_matches_numbers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md index e1a629f0253..cd264b55b2e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_properties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_object_properties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md index bd0aea6a9a4..de89002e7c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_type_matches_objects_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_object_type_matches_objects_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md index 8043268934a..edbf9a55c1f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_oneof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md index 1e52abacda9..4d5815a2d7d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md index 622939424d4..3a0ef36126d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_oneof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md index d7c874c7e19..8d942ed9641 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_oneof_with_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md index c4965b606eb..fefb9401a82 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_required_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_oneof_with_required_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md index 6263bbfd0b8..0124d11832f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_is_not_anchored_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_pattern_is_not_anchored_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md index 3a7e4116808..6ebed997ea3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_pattern_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md index edf333265a9..c5ccf76246d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_properties_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_properties_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md index f2f2451f7ce..2fc20a9cb35 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_property_named_ref_that_is_not_a_reference_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_property_named_ref_that_is_not_a_reference_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md index f12ed89c94e..e9e9506237b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_additionalproperties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_additionalproperties_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md index 5fca79829b7..c703448e70d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md index adc43721370..11f104a3874 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md index 455a391989d..4fc6b117ab8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_items_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md index 1c2104dbd7d..4d86ddf03be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md index b1d12605183..59b8a643035 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md index d92b6b2b24d..93f922226c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_ref_in_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md index 83e0cfd8f56..732ee5d3399 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_default_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_required_default_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md index b235576d474..ff7a4710506 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_required_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md index 9b62706232e..e5f0b30ab44 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_empty_array_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_required_with_empty_array_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md index 4bc87f28fcb..f334f81cd10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_required_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md index 60e27abb993..c3f4ad3f8d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_simple_enum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_simple_enum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md index dd1c3e30598..099ae1c4600 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_string_type_matches_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_string_type_matches_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index c7e8e0e8fb2..c1a9bb0ce2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md index 75da92b8418..750de06c26a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_false_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_uniqueitems_false_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md index 20110cc84f1..dde27c8ffd0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_uniqueitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md index 0ef73480f34..c10fef04be8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_uri_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md index a24e2981ee3..52d4f442f90 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_reference_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_uri_reference_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md index 659e983a46a..7a64e909128 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_template_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling OperationRequestBodyApi->post_uri_template_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../OperationRequestBodyApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index e87934e9ef0..7b2b92df1dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_allows_a_schema_which_should_validate_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_additionalproperties_allows_a_schema_which_should_validate_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md index 0da37da648d..564642e0ac5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md index a4720a358da..e9f96d0d55c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_are_allowed_by_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_additionalproperties_are_allowed_by_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md index 7e6fbfc3c23..dbe6af31b02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md index 22e7f2b7327..3e3ecc6ca4a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_can_exist_by_itself_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_additionalproperties_can_exist_by_itself_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md index 446ab0e328a..1698309422b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index f1a9a9c21d2..ed052e40d0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_additionalproperties_should_not_look_in_applicators_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_additionalproperties_should_not_look_in_applicators_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md index e169b7caa62..01af62de40c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md index 6e209c0207f..1365ff37b3d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_combined_with_anyof_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_combined_with_anyof_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md index e5ffa76f3e9..79b20ed190d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md index 00646fc0378..04ffd4cac18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_response_body_for_content_types.md index 2b4857c8581..4bbb2e6d654 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md index 3447c753544..fa7ee715793 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_simple_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_simple_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_response_body_for_content_types.md index a78b191c9a5..91953350740 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md index 877bbf41667..67e717f1f10 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_response_body_for_content_types.md index f3189995fe7..099403b61ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md index 07052160074..a59067a2f39 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_response_body_for_content_types.md index 5bd58853a54..3a615977c51 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md index 0a595e2f8c2..322485d0807 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_first_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_with_the_first_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md index 9b14a0232bd..4dc61679a08 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md index b8b3d69c7e4..e02da901fc5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_the_last_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_with_the_last_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md index 2d3ed66ec70..ff5e6af16db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md index 36ca0bc8b73..7ea2b344122 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_allof_with_two_empty_schemas_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_allof_with_two_empty_schemas_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md index 2130ed5e035..2097e36c01b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md index e6cc98fe93d..51f590f3018 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_anyof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_response_body_for_content_types.md index 5fd9ebdff23..4d3cce31877 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md index edbbb3a225d..e8d19153463 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_response_body_for_content_types.md index 00f40ebd05e..ecf4e50bee5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md index 00914bbcc4f..e4ba79f4a5b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_anyof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_response_body_for_content_types.md index 8893633375f..b166ddf40bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md index 3dffd321e92..ca90839216f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_anyof_with_one_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_anyof_with_one_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md index b02df76697f..c3228a9adbf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md index 14204d79c96..6eb6718b53d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_array_type_matches_arrays_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_array_type_matches_arrays_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_response_body_for_content_types.md index 714ab414d06..e9db970a63c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md index 3d563399478..1f2362b8106 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_boolean_type_matches_booleans_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_boolean_type_matches_booleans_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_response_body_for_content_types.md index 73b16e041b8..666436cfbf6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md index 31282e5f0f6..7d304506c9c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_int_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_by_int_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_response_body_for_content_types.md index b527d54757d..9524a50d9d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md index 35934c9602c..f28368b57db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_by_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_response_body_for_content_types.md index e6d58df670b..faefba6853d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md index a390a4e5ecc..4ce177d2f8c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_by_small_number_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_by_small_number_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_response_body_for_content_types.md index a983598fc52..d3d830b03f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md index de4b028e6f9..283e07d8023 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_date_time_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_date_time_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_response_body_for_content_types.md index ca220d4976a..84f1d076438 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md index 3e563c8ccd6..9364d7b91fe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_email_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_email_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_response_body_for_content_types.md index 46e0c7ee7a4..c7bd7f9be93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md index ee51493562b..58274f25e4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with0_does_not_match_false_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enum_with0_does_not_match_false_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md index 2fdb5405fdd..9e6bffeca54 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md index 34d36c1b4f7..a5446eed2a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with1_does_not_match_true_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enum_with1_does_not_match_true_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md index 58d1984d9c9..c9e657773c3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md index 72bd835d97b..a68668542ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enum_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_response_body_for_content_types.md index ebccc94744f..da805504ed6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md index d1a5ac15dfe..04a0b806b94 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_false_does_not_match0_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enum_with_false_does_not_match0_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md index 26cf334b027..b4b0e43267d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md index d821e6f2108..df487064ef9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enum_with_true_does_not_match1_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enum_with_true_does_not_match1_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md index 1382bb8301a..358d3824195 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md index 46c22a5e116..bcacbf409ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md @@ -29,6 +29,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_enums_in_properties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_enums_in_properties_request_body: %s\n" % e) ``` @@ -67,5 +68,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_response_body_for_content_types.md index d506a6da8b4..65941c45abc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md index 5f7dba7e9c3..b0b2d1823a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_forbidden_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_forbidden_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_response_body_for_content_types.md index 16c071cb09e..9c1d85b1d41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md index 5399bb0e827..37a108ad435 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_hostname_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_hostname_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_response_body_for_content_types.md index 5ef7143360d..8661fb3fdd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md index 144ccbaea86..59ec3bca64c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_integer_type_matches_integers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_integer_type_matches_integers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_response_body_for_content_types.md index b9fbe9b0420..dcaff8934b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index 94429b7ae88..0de5b3d2c6b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md index 41d3b3eee81..55d42cfa890 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md index 680ee4be662..d9bad96b8aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_invalid_string_value_for_default_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_invalid_string_value_for_default_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_response_body_for_content_types.md index f93034390fe..11350f86b6b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md index ab5fddf97c7..e9a8d2a356f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv4_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ipv4_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_response_body_for_content_types.md index 5ce26d7a559..8c4c39a3897 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md index 8fc988202b2..704bef16222 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ipv6_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ipv6_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_response_body_for_content_types.md index d054c5ff726..c69be5cdcda 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md index c0297236451..d7d6ff029ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_json_pointer_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_json_pointer_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_response_body_for_content_types.md index fa21c8d63cc..c5fbd98c3b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md index a7080ba1085..e966a608ee6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maximum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_response_body_for_content_types.md index 32e904ff5b7..04ae0e9fac5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md index 02458f4aad5..5e3bec02206 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maximum_validation_with_unsigned_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maximum_validation_with_unsigned_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md index 46f5b9140ec..09ea657dfa1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md index c94299579fa..19f1d08af71 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maxitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_response_body_for_content_types.md index f02e94d35ab..d094ee72aba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md index 398c79bca37..9e76df3ce80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maxlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_response_body_for_content_types.md index e5b1c0e5ac7..cd79f471ff7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md index efea528ce76..5ea8c2a4411 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties0_means_the_object_is_empty_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maxproperties0_means_the_object_is_empty_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md index cf395356653..5d638dc58c3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md index 4bdee646a73..f6b6f82f78b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_maxproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_maxproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_response_body_for_content_types.md index dd628b20c0f..80c320cf504 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md index 821f788b767..a8022bd210c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_minimum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_response_body_for_content_types.md index c00ebe49a9a..25a249e9616 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md index f3ed19c12da..42c508786fb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minimum_validation_with_signed_integer_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_minimum_validation_with_signed_integer_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md index e1b6e88fdc9..f7454161110 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md index 379ce5d8073..16199008076 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_minitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_response_body_for_content_types.md index 3b36ccdfbef..74113b3b2c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md index 05a207448a7..7431505f7ec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minlength_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_minlength_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_response_body_for_content_types.md index 823b69bc75e..5140ff527f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md index fa263c69c2f..065a0a1e9b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_minproperties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_minproperties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_response_body_for_content_types.md index 0099261c545..09a76e0259b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md index 419e233f304..aca8a19e3b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_allof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_nested_allof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md index 8717b3b72f5..08762f48dea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md index b6e8fc0b4bd..2a907729b27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_anyof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_nested_anyof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md index c355b586c61..28cd9aaa24a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md index 37abdd52b3d..01804a26932 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md @@ -34,6 +34,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_nested_items_request_body: %s\n" % e) ``` @@ -72,5 +73,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_response_body_for_content_types.md index 8a93b8433dc..2e3716d7455 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md index 2e215f17429..bf1e68b949c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nested_oneof_to_check_validation_semantics_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_nested_oneof_to_check_validation_semantics_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md index c99dc2bc3f7..6fb3b44dd28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md index 8a5495a7b7e..d060f66727e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_more_complex_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_not_more_complex_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_response_body_for_content_types.md index c6ef6822727..7fef5b4bdc6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md index 249e5fd1f0d..01051574c16 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_response_body_for_content_types.md index 354e1f5851c..940a1ced667 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md index cc53c68dfaa..3246b5ca37c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_nul_characters_in_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_nul_characters_in_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_response_body_for_content_types.md index 5174690d914..659e6bfab19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md index 6b8c5b077f9..a0fcc88ac6f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_null_type_matches_only_the_null_object_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_null_type_matches_only_the_null_object_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md index 5412074084b..f4701c2b676 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md index 8a126c8b03f..00a562e21a0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_number_type_matches_numbers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_number_type_matches_numbers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_response_body_for_content_types.md index 363368b0259..680bab6e6ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md index 6520009ae4f..101e50387ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_properties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_object_properties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_response_body_for_content_types.md index 9096f7f7a91..e192b52e406 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md index 3181dd1793e..d43e3f559cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_type_matches_objects_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_object_type_matches_objects_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_response_body_for_content_types.md index 68c43e1565c..48eafdb86a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md index 65d9235c867..af8b48dcd25 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_complex_types_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_oneof_complex_types_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_response_body_for_content_types.md index f0725f62129..6ec10c33ee1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md index fdc4467f28d..bdddb5edf2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_response_body_for_content_types.md index 3939464060f..a234cb345bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md index 1ec6d200a7e..02dbd7f02c5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_base_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_oneof_with_base_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_response_body_for_content_types.md index 7fef7925d7f..7ab3520525e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md index f9f2c9df2e5..9a16aa7cda0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_empty_schema_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_oneof_with_empty_schema_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_response_body_for_content_types.md index 30aba3e550a..931569bc3cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md index cf3f134fb91..5ee94cb58e9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_oneof_with_required_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_oneof_with_required_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_response_body_for_content_types.md index 4cd4b3136c9..04bfd5f0566 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md index 7c627bc4f37..72531123114 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_is_not_anchored_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_pattern_is_not_anchored_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_response_body_for_content_types.md index 80e9fad386e..cb7534143b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md index 54c724d4265..4e90f3f782e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_pattern_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_response_body_for_content_types.md index b2d23fca63f..dd1f7628149 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md index 825ab11b02c..9e57c5827a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_properties_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_properties_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_response_body_for_content_types.md index 6af76974403..1deb47bddab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md index cc51383fb60..7349abacfd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_property_named_ref_that_is_not_a_reference_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_property_named_ref_that_is_not_a_reference_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md index 08dcc6771f6..ff932fc242c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md index 50e06e6f125..b4180a606e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_additionalproperties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_additionalproperties_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_response_body_for_content_types.md index e1013f66d7f..200e6236829 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md index f9f150ce6d2..add4029a834 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_response_body_for_content_types.md index 80189a11396..23f89a12129 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md index 397529e91ac..28f2002d678 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_response_body_for_content_types.md index 47722f9497a..c014874dc64 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md index 60dd9c228f7..97887308ced 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_items_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_response_body_for_content_types.md index 72d0cb6a870..ecbb62ba36b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md index c7149ff2958..35a5b0d30c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_response_body_for_content_types.md index e6312e4458a..887669784dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md index 77f1698d521..2ff973e782a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_response_body_for_content_types.md index baf3797e2af..8ea4de635a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md index ebb61f629e1..2f25d60990e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_ref_in_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_response_body_for_content_types.md index a2b92ad777d..61b12fb87ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md index 2dac3f1f471..e39dd300624 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_default_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_required_default_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_response_body_for_content_types.md index 2edad60de9e..0ed689bb9cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md index 73364468662..498edf78c24 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_required_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_response_body_for_content_types.md index 5277a65b39f..c32a88897c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md index c18b3d5c4f1..f7bf81b96b1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_empty_array_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_required_with_empty_array_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_response_body_for_content_types.md index f3d16358fd1..c07becb1c85 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md index ba68ad79fa9..bfbe0f43e5b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_required_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_response_body_for_content_types.md index d76669525c2..0da5cb98bf2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md index 37dcd76c92a..2b9ae834383 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_simple_enum_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_simple_enum_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_response_body_for_content_types.md index 69350e14daf..a353b29a3e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md index 1326297c20b..fe75bc8d942 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_string_type_matches_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_string_type_matches_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_response_body_for_content_types.md index eb33653e7c8..497101186e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index 4942b045c59..9378ff58cd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md index b7c1a59f312..707b7b5a1f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md index a29bbd3633a..c04f47cdefc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_false_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_uniqueitems_false_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_response_body_for_content_types.md index 2013f5fa511..b64373bfdc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md index cc7a792f195..5846e0fea50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_uniqueitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_response_body_for_content_types.md index b321b0fb751..7fe2f3ebfcc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md index 93ba8826b19..38c76af9b6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_uri_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_response_body_for_content_types.md index 80e7b56d803..89598f7a7f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md index 0956be7d773..0567d46b179 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_reference_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_uri_reference_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_response_body_for_content_types.md index 2b1ef6df8f3..692d72e92ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md index dce3235f405..4c6787220fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uri_template_format_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PathPostApi->post_uri_template_format_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_response_body_for_content_types.md index cb244114277..464bb42fdf4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PathPostApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md index e8b6d3b6e4a..28bb609a3ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_is_not_anchored_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PatternApi->post_pattern_is_not_anchored_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_response_body_for_content_types.md index 974d5a256a3..09fa4d20f2e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md index 89d0deff447..482bede8433 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_pattern_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PatternApi->post_pattern_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_response_body_for_content_types.md index 5dc158ebbd6..8c6c567e86b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PatternApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md index 9a80fdac142..64b97048169 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_properties_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PropertiesApi->post_object_properties_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_response_body_for_content_types.md index 13609661d4e..7b7210d6229 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md index b84c6623968..c77122077be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_properties_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling PropertiesApi->post_properties_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_response_body_for_content_types.md index 37200f0ed58..18dbf98e4da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../PropertiesApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md index eb659e0342e..a8f6da2d115 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_property_named_ref_that_is_not_a_reference_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_property_named_ref_that_is_not_a_reference_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md index 253c8ae9fac..27576d4b7f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md index 5d1d4d4dc06..946e76f50ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_additionalproperties_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_additionalproperties_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_response_body_for_content_types.md index 2f9883852ef..bd18b084223 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md index 69628dea2ce..236420021a0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_allof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_allof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_response_body_for_content_types.md index 4d1714a0da1..cbd0d5a3043 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md index 837543ecdcc..5e103989046 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_anyof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_anyof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_response_body_for_content_types.md index 1837b914110..dbeb010bcb0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md index 9efe3380699..9b86ae1bbfc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_items_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_items_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_response_body_for_content_types.md index 3ac4f61bd8b..5e6db0b555e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md index b7942d48184..6018c43975e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_not_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_not_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_response_body_for_content_types.md index 0edafee84b8..54a3963e534 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md index f02d403133c..921725df8df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_oneof_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_oneof_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_response_body_for_content_types.md index 8c0f2345f83..89e7fa2f0a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md index a955df1b155..020273f99f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_ref_in_property_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RefApi->post_ref_in_property_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_response_body_for_content_types.md index 6144e60718a..d1895b787db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RefApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md index 64840bf494c..273f4e4b30f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_default_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RequiredApi->post_required_default_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_response_body_for_content_types.md index de85069b304..f1795b81584 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md index 4744f1c958e..bd072fa165e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RequiredApi->post_required_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_response_body_for_content_types.md index 6c5e058d4fa..8a6901ed976 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md index 94777464cb0..506e5b690bb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_empty_array_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RequiredApi->post_required_with_empty_array_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_response_body_for_content_types.md index b8c0fe2cc54..3519c7e2684 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md index ec1531433aa..80a5a5858e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_required_with_escaped_characters_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling RequiredApi->post_required_with_escaped_characters_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_response_body_for_content_types.md index c806930b09f..d01dbe98078 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../RequiredApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md index 78bcdffeba5..8d8d02e490e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md index f25c743ea67..d1984d4d9cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_are_allowed_by_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md index 76b261e9fa1..812bde328ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_can_exist_by_itself_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md index 16bae0a1e26..fe71b93d826 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md index ea51379c770..2006357a091 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_combined_with_anyof_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_response_body_for_content_types.md index 1658df96d9f..73373b8fde3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_simple_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_simple_types_response_body_for_content_types.md index 098a3171d67..925d983e9bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_simple_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_simple_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_base_schema_response_body_for_content_types.md index 7cac125b4b3..1f4ed47feb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_one_empty_schema_response_body_for_content_types.md index 64aa4906f09..95630a2ddf9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md index 595777ccbc3..a99e4a1ee88 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_first_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md index 814f9fbbba6..38e661188ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_the_last_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md index a5c33b96ced..901d88a9ccb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_allof_with_two_empty_schemas_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_complex_types_response_body_for_content_types.md index 54650ab80ed..52bba034342 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_response_body_for_content_types.md index 150caedd0c2..106c27cf616 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_base_schema_response_body_for_content_types.md index 35cbbbb571f..8a63f6806f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md index 37bae879839..841e8ebc40e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_anyof_with_one_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_array_type_matches_arrays_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_array_type_matches_arrays_response_body_for_content_types.md index 8fa3b8aa65f..ba6d964b32d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_array_type_matches_arrays_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_array_type_matches_arrays_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_boolean_type_matches_booleans_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_boolean_type_matches_booleans_response_body_for_content_types.md index 6140a49cd14..c3bca57df5d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_boolean_type_matches_booleans_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_boolean_type_matches_booleans_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_int_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_int_response_body_for_content_types.md index 838e6a10452..83e9f9b892f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_int_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_int_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_number_response_body_for_content_types.md index ee68170a516..8e8fc1bc5f1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_small_number_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_small_number_response_body_for_content_types.md index ebe9602c783..860b21b6a9a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_small_number_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_by_small_number_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_date_time_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_date_time_format_response_body_for_content_types.md index 8273801481e..80186c6a80e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_date_time_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_date_time_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_email_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_email_format_response_body_for_content_types.md index 306ffc906df..bf3cbad05f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_email_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_email_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md index 7be59cbccde..bfde4b72037 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with0_does_not_match_false_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md index 75f42adc7f7..2766c58641b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with1_does_not_match_true_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_escaped_characters_response_body_for_content_types.md index 04b448a31e7..37f56e06f4d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md index 7b4c82bae49..8a356ecc395 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_false_does_not_match0_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md index 6c1cbb0108e..5e3333822ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enum_with_true_does_not_match1_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enums_in_properties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enums_in_properties_response_body_for_content_types.md index 0fe7823a718..8695c5cf7fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enums_in_properties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_enums_in_properties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_forbidden_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_forbidden_property_response_body_for_content_types.md index 42fffddb3bc..43af381d78c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_forbidden_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_forbidden_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_hostname_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_hostname_format_response_body_for_content_types.md index ced5ae1dc2c..6ceffdc1933 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_hostname_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_hostname_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_integer_type_matches_integers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_integer_type_matches_integers_response_body_for_content_types.md index 5f38b9aa8c0..17db48df344 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_integer_type_matches_integers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_integer_type_matches_integers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md index b66bd8172bd..fdaa1795b58 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_string_value_for_default_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_string_value_for_default_response_body_for_content_types.md index 1eae260bae5..6579c33e1f8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_string_value_for_default_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_invalid_string_value_for_default_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv4_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv4_format_response_body_for_content_types.md index 770e7d9a893..14e1e2e5630 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv4_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv4_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv6_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv6_format_response_body_for_content_types.md index 9d5add7936e..7aa10eb6df2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv6_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ipv6_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_json_pointer_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_json_pointer_format_response_body_for_content_types.md index 5d1dcd01b07..37e67b1c207 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_json_pointer_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_json_pointer_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_response_body_for_content_types.md index d0d768473f2..c75fc6d60d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md index 57cd2683082..57c04f69520 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maximum_validation_with_unsigned_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxitems_validation_response_body_for_content_types.md index 7180b747714..e84f4b731f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxlength_validation_response_body_for_content_types.md index e6db72f59ca..ca1b33f5168 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md index fcf4964d301..d0c90ae0354 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties0_means_the_object_is_empty_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties_validation_response_body_for_content_types.md index 79c7444ab87..8fbfc6ef168 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_maxproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_response_body_for_content_types.md index 5a40b76557e..af8c2bcf0bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md index e74d99ad0a7..59b2ee06727 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minimum_validation_with_signed_integer_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minitems_validation_response_body_for_content_types.md index c967326d5ce..fc1b899b96f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minlength_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minlength_validation_response_body_for_content_types.md index e1d3815fd49..bee2c1de186 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minlength_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minlength_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minproperties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minproperties_validation_response_body_for_content_types.md index 930cd79f66f..c85fec8febe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minproperties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_minproperties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md index 23f1eb7161c..5c9f1a86210 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_allof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md index 6994d74fd12..525b86e6e6b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_anyof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_items_response_body_for_content_types.md index 835fdc421b2..b271da238d2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md index 82a20818b37..f5bad4efb60 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nested_oneof_to_check_validation_semantics_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_more_complex_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_more_complex_schema_response_body_for_content_types.md index f31ff20dff0..aad256bef48 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_more_complex_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_more_complex_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_response_body_for_content_types.md index ef53a4c06ef..d2834aa8313 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nul_characters_in_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nul_characters_in_strings_response_body_for_content_types.md index 53b84295497..b59e7c6a3ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nul_characters_in_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_nul_characters_in_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md index 4f69759f111..7552dcd14b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_number_type_matches_numbers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_number_type_matches_numbers_response_body_for_content_types.md index ff071eff5c6..57ce7a7061f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_number_type_matches_numbers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_number_type_matches_numbers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_properties_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_properties_validation_response_body_for_content_types.md index 18a37e94ef5..a7799fe4c3a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_properties_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_properties_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_type_matches_objects_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_type_matches_objects_response_body_for_content_types.md index 1a579198d1d..3e92edf5f66 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_type_matches_objects_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_object_type_matches_objects_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_complex_types_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_complex_types_response_body_for_content_types.md index 88f5a275a43..7ce5bef805b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_complex_types_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_complex_types_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_response_body_for_content_types.md index 8d898a258b9..74877e9bd82 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_base_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_base_schema_response_body_for_content_types.md index 8a93204c089..5457ff503f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_base_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_base_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_empty_schema_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_empty_schema_response_body_for_content_types.md index a90571b4b6b..f1876a29546 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_empty_schema_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_empty_schema_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_required_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_required_response_body_for_content_types.md index ca2ffd6ee2f..6fa04467b1b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_required_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_oneof_with_required_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_is_not_anchored_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_is_not_anchored_response_body_for_content_types.md index 33e2e989a27..09fbe406290 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_is_not_anchored_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_is_not_anchored_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_validation_response_body_for_content_types.md index 92fd5a0475e..a2eab2b9359 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_pattern_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_properties_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_properties_with_escaped_characters_response_body_for_content_types.md index 8d8204cafff..10ebf71deae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_properties_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_properties_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md index 725dd3f637a..217aa132f08 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_property_named_ref_that_is_not_a_reference_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_additionalproperties_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_additionalproperties_response_body_for_content_types.md index 994945fa827..e9070d95bd2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_additionalproperties_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_additionalproperties_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_allof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_allof_response_body_for_content_types.md index 5cfd2a0d4cc..09a319250e3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_allof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_allof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_anyof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_anyof_response_body_for_content_types.md index 23dcb4e12d5..24b5de9e122 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_anyof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_anyof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_items_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_items_response_body_for_content_types.md index 33900ff87df..a3754d69059 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_items_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_items_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_not_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_not_response_body_for_content_types.md index 1ca5a5a784a..52139232a05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_not_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_not_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_oneof_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_oneof_response_body_for_content_types.md index 8322a7229a7..d3d0406910a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_oneof_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_oneof_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_property_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_property_response_body_for_content_types.md index bd99020c458..2878dbf9c64 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_property_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_ref_in_property_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_default_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_default_validation_response_body_for_content_types.md index 0e000fb5d03..78351bf281d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_default_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_default_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_validation_response_body_for_content_types.md index e8bc0101309..96b416eadb3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_empty_array_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_empty_array_response_body_for_content_types.md index 4900647734f..1e05a0f156c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_empty_array_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_empty_array_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_escaped_characters_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_escaped_characters_response_body_for_content_types.md index 9a0df1c066a..9046f691b1c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_escaped_characters_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_required_with_escaped_characters_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_simple_enum_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_simple_enum_validation_response_body_for_content_types.md index 58bcabdfd32..e1ac021091f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_simple_enum_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_simple_enum_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_string_type_matches_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_string_type_matches_strings_response_body_for_content_types.md index 7c790466330..c4acf9c74cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_string_type_matches_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_string_type_matches_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md index 54bfc38f15e..2b3dbe18121 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_false_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_false_validation_response_body_for_content_types.md index 5b06544767d..197e421745e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_false_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_false_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_validation_response_body_for_content_types.md index 09575c5e33f..8b3e4694dd0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uniqueitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_format_response_body_for_content_types.md index d3d8252aaf6..c5c79af7f4a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md index 11fa2f077bd..66556236546 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_reference_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md index efada5e34e3..adb9a8a8e41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/response_content_content_type_schema_api/post_uri_template_format_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../ResponseContentContentTypeSchemaApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md index 59305aecbec..ac591da9c53 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md @@ -28,6 +28,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_array_type_matches_arrays_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_array_type_matches_arrays_request_body: %s\n" % e) ``` @@ -66,5 +67,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_response_body_for_content_types.md index 93482068c32..4a99a25640b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md index 103163022bd..6c3dc1a82cd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_boolean_type_matches_booleans_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_boolean_type_matches_booleans_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_response_body_for_content_types.md index cceb1307df7..876a0b95ca8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md index 472d67e5f19..55d9db62a2e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_integer_type_matches_integers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_integer_type_matches_integers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_response_body_for_content_types.md index ae27223e047..280e467bd19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md index 9bf55381514..f44a764c9ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_null_type_matches_only_the_null_object_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_null_type_matches_only_the_null_object_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md index d06b5d38091..fcfbec44366 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md index 0d85c07c2a5..7e0cde54aac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_number_type_matches_numbers_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_number_type_matches_numbers_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_response_body_for_content_types.md index df255a2bba2..fd962712be2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md index 19857bf9324..e7b8e741c0f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_object_type_matches_objects_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_object_type_matches_objects_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_response_body_for_content_types.md index 9264035e0e4..1b0e5b4fa32 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md index 9b1ecd7130f..a0470db1580 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_string_type_matches_strings_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling TypeApi->post_string_type_matches_strings_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_response_body_for_content_types.md index 45b05ed46a1..4310d1637a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../TypeApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md index 3efb9998536..c9008e84f03 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_false_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling UniqueItemsApi->post_uniqueitems_false_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_response_body_for_content_types.md index dbb00175a28..b22c8e894a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md index 4b9b7908fa2..1c4f653ce78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md @@ -26,6 +26,7 @@ with unit_test_api.ApiClient(configuration) as api_client: api_response = api_instance.post_uniqueitems_validation_request_body( body=body, ) + pprint(api_response) except unit_test_api.ApiException as e: print("Exception when calling UniqueItemsApi->post_uniqueitems_validation_request_body: %s\n" % e) ``` @@ -64,5 +65,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_response_body_for_content_types.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_response_body_for_content_types.md index a0186de2483..23d2179ba62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_response_body_for_content_types.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_response_body_for_content_types.md @@ -54,5 +54,4 @@ Type | Description | Notes No authorization required -[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../UniqueItemsApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md index 59679821bb9..a52df0e80d0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md index 306ee8ba378..4a3a93846d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md index 9950f1164db..4225df4faa3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself @@ -11,5 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | bool, | BoolClass, | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md index c1251bfd54c..7ccc87b643c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators @@ -30,5 +31,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md index 3566f232a27..21aefba3460 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof.Allof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof.Allof @@ -39,5 +40,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md index 760ba1f5b7b..f59202a8735 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof @@ -41,5 +42,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md index 623d6a39105..a73b2439818 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_simple_types.AllofSimpleTypes.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_simple_types.AllofSimpleTypes @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md index a46b58e85d2..6381903aecc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_base_schema.AllofWithBaseSchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_with_base_schema.AllofWithBaseSchema @@ -45,5 +46,4 @@ Key | Input Type | Accessed Type | Description | Notes **baz** | None, | NoneClass, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md index e1ebf250111..2d94d39cb62 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_with_one_empty_schema.AllofWithOneEmptySchema @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md index cd67b2067d9..288b1367bd1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md index b1d29baadf3..7125a4bf654 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md index f4afc3cc598..9752c33d8d1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.allof_with_two_empty_schemas.AllofWithTwoEmptySchemas @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md index 601b870df79..662ae43616a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof.Anyof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.anyof.Anyof @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md index 9768fb81bbd..92e7d7c54e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_complex_types.AnyofComplexTypes.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.anyof_complex_types.AnyofComplexTypes @@ -39,5 +40,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md index 1a4c7d67420..4ed60dd2a24 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.anyof_with_base_schema.AnyofWithBaseSchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md index 9d94601ad0a..aee04fa3a91 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.anyof_with_one_empty_schema.AnyofWithOneEmptySchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md index 83fa9055013..f509ea65f93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.array_type_matches_arrays.ArrayTypeMatchesArrays @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md index bbfe10584e7..6e3abfe23f2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.boolean_type_matches_booleans.BooleanTypeMatchesBooleans @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md index 2027d2935c6..23bfa92e21e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_int.ByInt.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.by_int.ByInt @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md index 12cc37eb3e4..7723e35945d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_number.ByNumber.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.by_number.ByNumber @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md index 2cf59c0ea72..17ad35726e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/by_small_number.BySmallNumber.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.by_small_number.BySmallNumber @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md index 3dcb8410793..e7821d03a11 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/date_time_format.DateTimeFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.date_time_format.DateTimeFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | value must conform to RFC-3339 date-time -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md index e18d2da499d..24602f302cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/email_format.EmailFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.email_format.EmailFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md index 56a37a8cf63..b08456ee896 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [0, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md index 9d19c4307c0..95535175663 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [1, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md index cf2a25a06a1..4a0e4d32274 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enum_with_escaped_characters.EnumWithEscapedCharacters @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["foo\nbar", "foo\rbar", ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md index 015a0af659a..7ee12ab58e7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0 @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | must be one of [False, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md index b7fbdf0f72d..aad7b5cb081 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1 @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- bool, | BoolClass, | | must be one of [True, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md index a1f5dff6b9b..143f4d6b09a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/enums_in_properties.EnumsInProperties.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.enums_in_properties.EnumsInProperties @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | [optional] must be one of ["foo", ] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md index 04471053c42..71421d471ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/forbidden_property.ForbiddenProperty.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.forbidden_property.ForbiddenProperty @@ -32,5 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md index 811abebf8f1..021e08508f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/hostname_format.HostnameFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.hostname_format.HostnameFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md index 9b55cd3601c..430c623a398 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.integer_type_matches_integers.IntegerTypeMatchesIntegers @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md index 6a27cc6903e..4780defdaf1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md index 573b81067c6..b21d0e25077 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.invalid_string_value_for_default.InvalidStringValueForDefault @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | str, | str, | | [optional] if omitted the server will use the default value of "bad" **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md index af05b70fa55..e9402172f37 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv4_format.Ipv4Format.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ipv4_format.Ipv4Format @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md index b71de24f36e..4cd7eb6ef78 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ipv6_format.Ipv6Format.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ipv6_format.Ipv6Format @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md index a868e678edd..e1a060aaea9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/json_pointer_format.JsonPointerFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.json_pointer_format.JsonPointerFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md index 0cc5bfa5b77..da73c8b10b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation.MaximumValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maximum_validation.MaximumValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md index 99d8e299910..5f851b9e2c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md index e1dabedf910..c72f563289c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxitems_validation.MaxitemsValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maxitems_validation.MaxitemsValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md index 6c92b6747ed..eeba3fced6c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxlength_validation.MaxlengthValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maxlength_validation.MaxlengthValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md index d2e46bee59c..8504c06902e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md index 48bc3d8d637..f3826a89b49 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/maxproperties_validation.MaxpropertiesValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.maxproperties_validation.MaxpropertiesValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md index ed9acc2d6e6..b33774d98ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation.MinimumValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.minimum_validation.MinimumValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md index 8026d819c57..389486a2aae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md index 84f04193957..ad0f53bbcd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minitems_validation.MinitemsValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.minitems_validation.MinitemsValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md index ba8de0472d7..f64ac1e94cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minlength_validation.MinlengthValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.minlength_validation.MinlengthValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md index d8d78e8462f..9dd6afde623 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/minproperties_validation.MinpropertiesValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.minproperties_validation.MinpropertiesValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/model_not.ModelNot.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/model_not.ModelNot.md index fbff3641db1..3da2c02df87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/model_not.ModelNot.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/model_not.ModelNot.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.model_not.ModelNot @@ -19,5 +20,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md index 84b85084890..0118941a89d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics @@ -32,5 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md index d465c0804a0..aaefa5f674f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics @@ -32,5 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_items.NestedItems.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_items.NestedItems.md index d3ca1e9596d..ba705c4a66e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_items.NestedItems.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_items.NestedItems.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.nested_items.NestedItems @@ -47,5 +48,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- items | decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md index 63bce618180..eee54f07634 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics @@ -32,5 +33,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md index 49821ab9700..b52d53d33f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/not_more_complex_schema.NotMoreComplexSchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.not_more_complex_schema.NotMoreComplexSchema @@ -25,5 +26,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nul_characters_in_strings.NulCharactersInStrings.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nul_characters_in_strings.NulCharactersInStrings.md index faf33acd754..22f4d07ce90 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nul_characters_in_strings.NulCharactersInStrings.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/nul_characters_in_strings.NulCharactersInStrings.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.nul_characters_in_strings.NulCharactersInStrings @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | must be one of ["hello\x00there", ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md index ebb0132ccca..3052f84aed2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- None, | NoneClass, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md index 8677be45c25..a60a69a950e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.number_type_matches_numbers.NumberTypeMatchesNumbers @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md index 6d4068d3450..9c280b2d40a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_properties_validation.ObjectPropertiesValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.object_properties_validation.ObjectPropertiesValidation @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md index 8e3aa294b9b..b8507198775 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.object_type_matches_objects.ObjectTypeMatchesObjects @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, | frozendict.frozendict, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md index 4b65291ba61..13bd93182ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof.Oneof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.oneof.Oneof @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md index 11349d6e05c..e2471754cdf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_complex_types.OneofComplexTypes.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.oneof_complex_types.OneofComplexTypes @@ -39,5 +40,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | str, | str, | | **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md index 26505515575..8f2f70b42fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_base_schema.OneofWithBaseSchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.oneof_with_base_schema.OneofWithBaseSchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md index 8c062b0fdc5..71104efdf8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.oneof_with_empty_schema.OneofWithEmptySchema @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md index f6422dbb5dc..30179b753c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/oneof_with_required.OneofWithRequired.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.oneof_with_required.OneofWithRequired @@ -27,5 +28,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md index 27909c08399..58268cec2a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.pattern_is_not_anchored.PatternIsNotAnchored @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md index be9c9f23ad5..e572588bca9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/pattern_validation.PatternValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.pattern_validation.PatternValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md index 59fca81b5d7..8c5f9a6198a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.properties_with_escaped_characters.PropertiesWithEscapedCharacters @@ -17,5 +18,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo\fbar** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md index 59e652f881f..8bd4e1d4089 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **$ref** | str, | str, | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md index d86433c4b2a..fed6f1ec235 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_additionalproperties.RefInAdditionalproperties @@ -11,5 +12,4 @@ Key | Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- | ------------- **any_string_name** | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md index 7d560a868b4..14d5015e57e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_allof.RefInAllof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_allof.RefInAllof @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md index 2d5c72bb64b..3c2a65dfcb3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_anyof.RefInAnyof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_anyof.RefInAnyof @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_items.RefInItems.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_items.RefInItems.md index 4047c8f5217..4ce8323d739 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_items.RefInItems.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_items.RefInItems.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_items.RefInItems @@ -11,5 +12,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md index 2c84d2109d9..6007e36265c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_not.RefInNot.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_not.RefInNot @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md index d29c2d77c4b..c342ff2d7fa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_oneof.RefInOneof.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_oneof.RefInOneof @@ -12,5 +13,4 @@ Class Name | Input Type | Accessed Type | Description | Notes ------------- | ------------- | ------------- | ------------- | ------------- [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md index f54768419c5..b9d2ffcce5b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/ref_in_property.RefInProperty.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.ref_in_property.RefInProperty @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **a** | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | [**PropertyNamedRefThatIsNotAReference**](property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md index fc8f3aa3a00..964906b59da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_default_validation.RequiredDefaultValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.required_default_validation.RequiredDefaultValidation @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md index f110abfdc09..f454f6f0995 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_validation.RequiredValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.required_validation.RequiredValidation @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **bar** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md index a9ed71feb4f..34d0bafbd85 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_empty_array.RequiredWithEmptyArray.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.required_with_empty_array.RequiredWithEmptyArray @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **foo** | dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | [optional] **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md index cde1baed168..3648ee2b60d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.required_with_escaped_characters.RequiredWithEscapedCharacters @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/simple_enum_validation.SimpleEnumValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/simple_enum_validation.SimpleEnumValidation.md index ea0849f4366..31274ef8950 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/simple_enum_validation.SimpleEnumValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/simple_enum_validation.SimpleEnumValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.simple_enum_validation.SimpleEnumValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- decimal.Decimal, int, float, | decimal.Decimal, | | must be one of [1, 2, 3, ] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/string_type_matches_strings.StringTypeMatchesStrings.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/string_type_matches_strings.StringTypeMatchesStrings.md index 4625be3d425..69fec23383a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/string_type_matches_strings.StringTypeMatchesStrings.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/string_type_matches_strings.StringTypeMatchesStrings.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.string_type_matches_strings.StringTypeMatchesStrings @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- str, | str, | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md index 50f0b569a5b..f21c08d4d76 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing @@ -12,5 +13,4 @@ Key | Input Type | Accessed Type | Description | Notes **alpha** | decimal.Decimal, int, float, | decimal.Decimal, | | [optional] if omitted the server will use the default value of 5 **any_string_name** | dict, frozendict.frozendict, str, date, datetime, int, float, bool, decimal.Decimal, None, list, tuple, bytes, io.FileIO, io.BufferedReader | frozendict.frozendict, str, BoolClass, decimal.Decimal, NoneClass, tuple, bytes, FileIO | any string name can be used but the value must be the correct type | [optional] -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md index 200915b98ec..76514809937 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.uniqueitems_false_validation.UniqueitemsFalseValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md index 3e817a7f4ce..021ce148c1e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uniqueitems_validation.UniqueitemsValidation.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.uniqueitems_validation.UniqueitemsValidation @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md index 4e8d97d1b4e..e1653948bec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_format.UriFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.uri_format.UriFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md index cc52d13d302..0c204b26084 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_reference_format.UriReferenceFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.uri_reference_format.UriReferenceFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md index 9e5beaeb037..1e3ac931cd1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/components/schema/uri_template_format.UriTemplateFormat.md @@ -1,3 +1,4 @@ + # unit_test_api.components.schema.uri_template_format.UriTemplateFormat @@ -6,5 +7,4 @@ Input Type | Accessed Type | Description | Notes ------------ | ------------- | ------------- | ------------- dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, bool, None, list, tuple, bytes, io.FileIO, io.BufferedReader, | frozendict.frozendict, str, decimal.Decimal, BoolClass, NoneClass, tuple, bytes, FileIO | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py index 4d476d6410e..cca67265f5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_no_additional_properties_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_additional_invalid_property_is_invalid_fails(self): # an additional invalid property is invalid accept_content_type = 'application/json' @@ -97,7 +96,6 @@ def test_an_additional_invalid_property_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_additional_valid_property_is_valid_passes(self): # an additional valid property is valid accept_content_type = 'application/json' @@ -137,6 +135,5 @@ def test_an_additional_valid_property_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py index 500507aedf0..3fd9cb27553 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py @@ -73,6 +73,5 @@ def test_additional_properties_are_allowed_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py index ac493b3bad6..df9971fa574 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py @@ -60,7 +60,6 @@ def test_an_additional_invalid_property_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_additional_valid_property_is_valid_passes(self): # an additional valid property is valid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_an_additional_valid_property_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py index d481d416e2b..e791cc5a1d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py @@ -62,7 +62,6 @@ def test_properties_defined_in_allof_are_not_examined_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_valid_test_case_passes(self): # valid test case accept_content_type = 'application/json' @@ -100,6 +99,5 @@ def test_valid_test_case_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py index 0c112e87586..5060d92a261 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_allof_true_anyof_false_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_false_anyof_false_oneof_true_fails(self): # allOf: false, anyOf: false, oneOf: true accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_allof_false_anyof_false_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_false_anyof_true_oneof_true_fails(self): # allOf: false, anyOf: true, oneOf: true accept_content_type = 'application/json' @@ -105,7 +103,6 @@ def test_allof_false_anyof_true_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_true_anyof_true_oneof_false_fails(self): # allOf: true, anyOf: true, oneOf: false accept_content_type = 'application/json' @@ -129,7 +126,6 @@ def test_allof_true_anyof_true_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_true_anyof_true_oneof_true_passes(self): # allOf: true, anyOf: true, oneOf: true accept_content_type = 'application/json' @@ -159,7 +155,6 @@ def test_allof_true_anyof_true_oneof_true_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_allof_true_anyof_false_oneof_true_fails(self): # allOf: true, anyOf: false, oneOf: true accept_content_type = 'application/json' @@ -183,7 +178,6 @@ def test_allof_true_anyof_false_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_false_anyof_true_oneof_false_fails(self): # allOf: false, anyOf: true, oneOf: false accept_content_type = 'application/json' @@ -207,7 +201,6 @@ def test_allof_false_anyof_true_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_allof_false_anyof_false_oneof_false_fails(self): # allOf: false, anyOf: false, oneOf: false accept_content_type = 'application/json' @@ -234,6 +227,5 @@ def test_allof_false_anyof_false_oneof_false_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py index 574d73c3ecc..c99cda94058 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py @@ -68,7 +68,6 @@ def test_allof_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_mismatch_first_fails(self): # mismatch first accept_content_type = 'application/json' @@ -95,7 +94,6 @@ def test_mismatch_first_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_second_fails(self): # mismatch second accept_content_type = 'application/json' @@ -122,7 +120,6 @@ def test_mismatch_second_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_wrong_type_fails(self): # wrong type accept_content_type = 'application/json' @@ -154,6 +151,5 @@ def test_wrong_type_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py index e423daee17d..71976748f08 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_mismatch_one_fails(self): # mismatch one accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_mismatch_one_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py index 3510db2f53a..fc0e8a164c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py @@ -70,7 +70,6 @@ def test_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_mismatch_first_allof_fails(self): # mismatch first allOf accept_content_type = 'application/json' @@ -99,7 +98,6 @@ def test_mismatch_first_allof_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -128,7 +126,6 @@ def test_mismatch_base_schema_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_both_fails(self): # mismatch both accept_content_type = 'application/json' @@ -155,7 +152,6 @@ def test_mismatch_both_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_second_allof_fails(self): # mismatch second allOf accept_content_type = 'application/json' @@ -187,6 +183,5 @@ def test_mismatch_second_allof_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py index 9ff1f262b96..4476552a6be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py @@ -66,6 +66,5 @@ def test_any_data_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py index 79520d71eb6..75754e00938 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_string_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_number_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py index 9c4c774d88e..4bc2909e05d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_string_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_number_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py index 82f8301c6a9..3b298f46f5f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py @@ -66,6 +66,5 @@ def test_any_data_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py index d2d3d4fdd67..61789db73f9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_second_anyof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_neither_anyof_valid_complex_fails(self): # neither anyOf valid (complex) accept_content_type = 'application/json' @@ -95,7 +94,6 @@ def test_neither_anyof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_anyof_valid_complex_passes(self): # both anyOf valid (complex) accept_content_type = 'application/json' @@ -130,7 +128,6 @@ def test_both_anyof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_first_anyof_valid_complex_passes(self): # first anyOf valid (complex) accept_content_type = 'application/json' @@ -166,6 +163,5 @@ def test_first_anyof_valid_complex_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py index 664420e05b8..7f4f3900b7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_second_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_neither_anyof_valid_fails(self): # neither anyOf valid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_neither_anyof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_anyof_valid_passes(self): # both anyOf valid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_both_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_first_anyof_valid_passes(self): # first anyOf valid accept_content_type = 'application/json' @@ -150,6 +147,5 @@ def test_first_anyof_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py index d90866a6004..93798dcd87a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_one_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_both_anyof_invalid_fails(self): # both anyOf invalid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_both_anyof_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -114,6 +112,5 @@ def test_mismatch_base_schema_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py index 15c8737394d..8a2dd370fad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_string_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_number_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py index bfc7d54a588..4fa7af4f8ac 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_a_float_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_boolean_is_not_an_array_fails(self): # a boolean is not an array accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_a_boolean_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_an_array_fails(self): # null is not an array accept_content_type = 'application/json' @@ -105,7 +103,6 @@ def test_null_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_object_is_not_an_array_fails(self): # an object is not an array accept_content_type = 'application/json' @@ -130,7 +127,6 @@ def test_an_object_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_not_an_array_fails(self): # a string is not an array accept_content_type = 'application/json' @@ -154,7 +150,6 @@ def test_a_string_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_array_is_an_array_passes(self): # an array is an array accept_content_type = 'application/json' @@ -185,7 +180,6 @@ def test_an_array_is_an_array_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_integer_is_not_an_array_fails(self): # an integer is not an array accept_content_type = 'application/json' @@ -212,6 +206,5 @@ def test_an_integer_is_not_an_array_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py index bd6e7e68b3d..28e96dcbb20 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_an_empty_string_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_float_is_not_a_boolean_fails(self): # a float is not a boolean accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_a_float_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_a_boolean_fails(self): # null is not a boolean accept_content_type = 'application/json' @@ -105,7 +103,6 @@ def test_null_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_zero_is_not_a_boolean_fails(self): # zero is not a boolean accept_content_type = 'application/json' @@ -129,7 +126,6 @@ def test_zero_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_array_is_not_a_boolean_fails(self): # an array is not a boolean accept_content_type = 'application/json' @@ -154,7 +150,6 @@ def test_an_array_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_not_a_boolean_fails(self): # a string is not a boolean accept_content_type = 'application/json' @@ -178,7 +173,6 @@ def test_a_string_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_false_is_a_boolean_passes(self): # false is a boolean accept_content_type = 'application/json' @@ -208,7 +202,6 @@ def test_false_is_a_boolean_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_integer_is_not_a_boolean_fails(self): # an integer is not a boolean accept_content_type = 'application/json' @@ -232,7 +225,6 @@ def test_an_integer_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_true_is_a_boolean_passes(self): # true is a boolean accept_content_type = 'application/json' @@ -262,7 +254,6 @@ def test_true_is_a_boolean_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_object_is_not_a_boolean_fails(self): # an object is not a boolean accept_content_type = 'application/json' @@ -290,6 +281,5 @@ def test_an_object_is_not_a_boolean_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py index bf66cd906e6..5a7dcaf5faa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_int_by_int_fail_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_int_by_int_passes(self): # int by int accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_int_by_int_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -120,6 +118,5 @@ def test_ignores_non_numbers_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py index 7a39d573adc..f708e7fff38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_45_is_multiple_of15_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_35_is_not_multiple_of15_fails(self): # 35 is not multiple of 1.5 accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_35_is_not_multiple_of15_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_zero_is_multiple_of_anything_passes(self): # zero is multiple of anything accept_content_type = 'application/json' @@ -120,6 +118,5 @@ def test_zero_is_multiple_of_anything_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py index 88ceb225ed1..765eaeb62de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_000751_is_not_multiple_of00001_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_00075_is_multiple_of00001_passes(self): # 0.0075 is multiple of 0.0001 accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_00075_is_multiple_of00001_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py index 50a51ab778d..71e1d565543 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py index 264f5836622..fc53bcc0e96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py index f98a857fea1..0c400eafa91 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_integer_zero_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_float_zero_is_valid_passes(self): # float zero is valid accept_content_type = 'application/json' @@ -93,7 +92,6 @@ def test_float_zero_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_false_is_invalid_fails(self): # false is invalid accept_content_type = 'application/json' @@ -120,6 +118,5 @@ def test_false_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py index 3ba349669be..553b062e869 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_true_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_integer_one_is_valid_passes(self): # integer one is valid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_integer_one_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_float_one_is_valid_passes(self): # float one is valid accept_content_type = 'application/json' @@ -120,6 +118,5 @@ def test_float_one_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py index aa77a36692c..b622c322a9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_member2_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_member1_is_valid_passes(self): # member 1 is valid accept_content_type = 'application/json' @@ -93,7 +92,6 @@ def test_member1_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_another_string_is_invalid_fails(self): # another string is invalid accept_content_type = 'application/json' @@ -120,6 +118,5 @@ def test_another_string_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py index 72f689394a4..dc5971a36c7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_false_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_float_zero_is_invalid_fails(self): # float zero is invalid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_float_zero_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_integer_zero_is_invalid_fails(self): # integer zero is invalid accept_content_type = 'application/json' @@ -114,6 +112,5 @@ def test_integer_zero_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py index 699ef4a104b..647e9e25b70 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_float_one_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_true_is_valid_passes(self): # true is valid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_true_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_integer_one_is_invalid_fails(self): # integer one is invalid accept_content_type = 'application/json' @@ -114,6 +112,5 @@ def test_integer_one_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py index 0d3afdde73e..c037eeb4aa7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_missing_optional_property_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_wrong_foo_value_fails(self): # wrong foo value accept_content_type = 'application/json' @@ -95,7 +94,6 @@ def test_wrong_foo_value_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_properties_are_valid_passes(self): # both properties are valid accept_content_type = 'application/json' @@ -130,7 +128,6 @@ def test_both_properties_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_wrong_bar_value_fails(self): # wrong bar value accept_content_type = 'application/json' @@ -159,7 +156,6 @@ def test_wrong_bar_value_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_missing_all_properties_is_invalid_fails(self): # missing all properties is invalid accept_content_type = 'application/json' @@ -184,7 +180,6 @@ def test_missing_all_properties_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_missing_required_property_is_invalid_fails(self): # missing required property is invalid accept_content_type = 'application/json' @@ -214,6 +209,5 @@ def test_missing_required_property_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py index d9c0198cbae..2258af80b34 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py @@ -62,7 +62,6 @@ def test_property_present_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_property_absent_passes(self): # property absent accept_content_type = 'application/json' @@ -100,6 +99,5 @@ def test_property_absent_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py index 209b36f06fa..9be068208a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py index b0dfa19f5e3..b61b6541d18 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py @@ -58,7 +58,6 @@ def test_an_object_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_not_an_integer_fails(self): # a string is not an integer accept_content_type = 'application/json' @@ -82,7 +81,6 @@ def test_a_string_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_an_integer_fails(self): # null is not an integer accept_content_type = 'application/json' @@ -106,7 +104,6 @@ def test_null_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_float_with_zero_fractional_part_is_an_integer_passes(self): # a float with zero fractional part is an integer accept_content_type = 'application/json' @@ -136,7 +133,6 @@ def test_a_float_with_zero_fractional_part_is_an_integer_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_float_is_not_an_integer_fails(self): # a float is not an integer accept_content_type = 'application/json' @@ -160,7 +156,6 @@ def test_a_float_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_boolean_is_not_an_integer_fails(self): # a boolean is not an integer accept_content_type = 'application/json' @@ -184,7 +179,6 @@ def test_a_boolean_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_integer_is_an_integer_passes(self): # an integer is an integer accept_content_type = 'application/json' @@ -214,7 +208,6 @@ def test_an_integer_is_an_integer_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_string_is_still_not_an_integer_even_if_it_looks_like_one_fails(self): # a string is still not an integer, even if it looks like one accept_content_type = 'application/json' @@ -238,7 +231,6 @@ def test_a_string_is_still_not_an_integer_even_if_it_looks_like_one_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_array_is_not_an_integer_fails(self): # an array is not an integer accept_content_type = 'application/json' @@ -266,6 +258,5 @@ def test_an_array_is_not_an_integer_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py index 74759c9cc67..8088b105991 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_always_invalid_but_naive_implementations_may_raise_an_overflow_error_fa content_type=None, accept_content_type=accept_content_type, ) - def test_valid_integer_with_multipleof_float_passes(self): # valid integer with multipleOf float accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_valid_integer_with_multipleof_float_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py index 9e5496bac23..4592fc813ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_valid_when_property_is_specified_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_still_valid_when_the_invalid_default_is_used_passes(self): # still valid when the invalid default is used accept_content_type = 'application/json' @@ -100,6 +99,5 @@ def test_still_valid_when_the_invalid_default_is_used_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py index eb78697d700..b9ffbdfab05 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py index c8ad2c62053..361a7b4876b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py index 1aa1befb1a2..c1b54944a0b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py index 5d4913a5018..7fe394cdeb8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_below_the_maximum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_boundary_point_is_valid_passes(self): # boundary point is valid accept_content_type = 'application/json' @@ -93,7 +92,6 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_above_the_maximum_is_invalid_fails(self): # above the maximum is invalid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_above_the_maximum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -150,6 +147,5 @@ def test_ignores_non_numbers_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py index a29ce05bebc..26bcaf99db7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_below_the_maximum_is_invalid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_above_the_maximum_is_invalid_fails(self): # above the maximum is invalid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_above_the_maximum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_boundary_point_integer_is_valid_passes(self): # boundary point integer is valid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_boundary_point_integer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_boundary_point_float_is_valid_passes(self): # boundary point float is valid accept_content_type = 'application/json' @@ -150,6 +147,5 @@ def test_boundary_point_float_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py index 0bbc4f6f340..d101a2525d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py @@ -61,7 +61,6 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_non_arrays_passes(self): # ignores non-arrays accept_content_type = 'application/json' @@ -91,7 +90,6 @@ def test_ignores_non_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -123,7 +121,6 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -159,6 +156,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py index 57eff56098c..37ef06a7ea9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_non_strings_passes(self): # ignores non-strings accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_ignores_non_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_two_supplementary_unicode_code_points_is_long_enough_passes(self): # two supplementary Unicode code points is long enough accept_content_type = 'application/json' @@ -147,7 +144,6 @@ def test_two_supplementary_unicode_code_points_is_long_enough_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -180,6 +176,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py index e1e3d290066..01b109e0ed6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_no_properties_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_one_property_is_invalid_fails(self): # one property is invalid accept_content_type = 'application/json' @@ -94,6 +93,5 @@ def test_one_property_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py index 92a8ac62a27..e374b943cc9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_arrays_passes(self): # ignores arrays accept_content_type = 'application/json' @@ -98,7 +97,6 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -128,7 +126,6 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -158,7 +155,6 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -191,7 +187,6 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -229,6 +224,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py index c3a5e60315d..5d0658ebdfc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_below_the_minimum_is_invalid_fails(self): # below the minimum is invalid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_above_the_minimum_is_valid_passes(self): # above the minimum is valid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -150,6 +147,5 @@ def test_ignores_non_numbers_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py index e6e629af30b..ea5b03b9a7e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_positive_above_the_minimum_is_valid_passes(self): # positive above the minimum is valid accept_content_type = 'application/json' @@ -93,7 +92,6 @@ def test_positive_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_int_below_the_minimum_is_invalid_fails(self): # int below the minimum is invalid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_int_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_float_below_the_minimum_is_invalid_fails(self): # float below the minimum is invalid accept_content_type = 'application/json' @@ -141,7 +138,6 @@ def test_float_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_boundary_point_with_float_is_valid_passes(self): # boundary point with float is valid accept_content_type = 'application/json' @@ -171,7 +167,6 @@ def test_boundary_point_with_float_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_negative_above_the_minimum_is_valid_passes(self): # negative above the minimum is valid accept_content_type = 'application/json' @@ -201,7 +196,6 @@ def test_negative_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -234,6 +228,5 @@ def test_ignores_non_numbers_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py index 23550b69722..6a3a645ab38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py @@ -58,7 +58,6 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_non_arrays_passes(self): # ignores non-arrays accept_content_type = 'application/json' @@ -88,7 +87,6 @@ def test_ignores_non_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -121,7 +119,6 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -156,6 +153,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py index 5265521a1a0..473e6428a45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_one_supplementary_unicode_code_point_is_not_long_enough_fails(self): # one supplementary Unicode code point is not long enough accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_one_supplementary_unicode_code_point_is_not_long_enough_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -111,7 +109,6 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_non_strings_passes(self): # ignores non-strings accept_content_type = 'application/json' @@ -141,7 +138,6 @@ def test_ignores_non_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -174,6 +170,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py index c5a8604bff6..8f097531a8e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_too_short_is_invalid_fails(self): # too short is invalid accept_content_type = 'application/json' @@ -119,7 +117,6 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -149,7 +146,6 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -184,7 +180,6 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -220,6 +215,5 @@ def test_exact_length_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py index e16576601ce..a600f890f28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_null_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py index b961b8e641b..b9bd377545a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_null_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py index 37797dfae68..98cdaf91c3a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py @@ -92,7 +92,6 @@ def test_valid_nested_array_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_nested_array_with_invalid_type_fails(self): # nested array with invalid type accept_content_type = 'application/json' @@ -145,7 +144,6 @@ def test_nested_array_with_invalid_type_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_not_deep_enough_fails(self): # not deep enough accept_content_type = 'application/json' @@ -195,6 +193,5 @@ def test_not_deep_enough_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py index 1bef18603f7..6d40c4133c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_null_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py index 6253dfaaade..5909126e30b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_other_match_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_mismatch_fails(self): # mismatch accept_content_type = 'application/json' @@ -93,7 +92,6 @@ def test_mismatch_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_match_passes(self): # match accept_content_type = 'application/json' @@ -126,6 +124,5 @@ def test_match_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py index e18c15fa24f..4b9b19300bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_allowed_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_disallowed_fails(self): # disallowed accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_disallowed_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py index c2f95b14522..09663e1f537 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_match_string_with_nul_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_do_not_match_string_lacking_nul_fails(self): # do not match string lacking nul accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_do_not_match_string_lacking_nul_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py index 34cb0f7194d..870ed533174 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_a_float_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_object_is_not_null_fails(self): # an object is not null accept_content_type = 'application/json' @@ -82,7 +81,6 @@ def test_an_object_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_false_is_not_null_fails(self): # false is not null accept_content_type = 'application/json' @@ -106,7 +104,6 @@ def test_false_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_integer_is_not_null_fails(self): # an integer is not null accept_content_type = 'application/json' @@ -130,7 +127,6 @@ def test_an_integer_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_true_is_not_null_fails(self): # true is not null accept_content_type = 'application/json' @@ -154,7 +150,6 @@ def test_true_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_zero_is_not_null_fails(self): # zero is not null accept_content_type = 'application/json' @@ -178,7 +173,6 @@ def test_zero_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_empty_string_is_not_null_fails(self): # an empty string is not null accept_content_type = 'application/json' @@ -202,7 +196,6 @@ def test_an_empty_string_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_null_passes(self): # null is null accept_content_type = 'application/json' @@ -232,7 +225,6 @@ def test_null_is_null_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_array_is_not_null_fails(self): # an array is not null accept_content_type = 'application/json' @@ -257,7 +249,6 @@ def test_an_array_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_not_null_fails(self): # a string is not null accept_content_type = 'application/json' @@ -284,6 +275,5 @@ def test_a_string_is_not_null_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py index fbeb5e0d6ea..16e9d8376d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py @@ -58,7 +58,6 @@ def test_an_array_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_a_number_fails(self): # null is not a number accept_content_type = 'application/json' @@ -82,7 +81,6 @@ def test_null_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_object_is_not_a_number_fails(self): # an object is not a number accept_content_type = 'application/json' @@ -107,7 +105,6 @@ def test_an_object_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_boolean_is_not_a_number_fails(self): # a boolean is not a number accept_content_type = 'application/json' @@ -131,7 +128,6 @@ def test_a_boolean_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_float_is_a_number_passes(self): # a float is a number accept_content_type = 'application/json' @@ -161,7 +157,6 @@ def test_a_float_is_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_string_is_still_not_a_number_even_if_it_looks_like_one_fails(self): # a string is still not a number, even if it looks like one accept_content_type = 'application/json' @@ -185,7 +180,6 @@ def test_a_string_is_still_not_a_number_even_if_it_looks_like_one_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_not_a_number_fails(self): # a string is not a number accept_content_type = 'application/json' @@ -209,7 +203,6 @@ def test_a_string_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_integer_is_a_number_passes(self): # an integer is a number accept_content_type = 'application/json' @@ -239,7 +232,6 @@ def test_an_integer_is_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_float_with_zero_fractional_part_is_a_number_and_an_integer_passes(self): # a float with zero fractional part is a number (and an integer) accept_content_type = 'application/json' @@ -272,6 +264,5 @@ def test_a_float_with_zero_fractional_part_is_a_number_and_an_integer_passes(sel - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py index d16d5c84950..2e98e19e756 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_one_property_invalid_is_invalid_fails(self): # one property invalid is invalid accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_one_property_invalid_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_properties_present_and_valid_is_valid_passes(self): # both properties present and valid is valid accept_content_type = 'application/json' @@ -159,7 +156,6 @@ def test_both_properties_present_and_valid_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_doesn_t_invalidate_other_properties_passes(self): # doesn't invalidate other properties accept_content_type = 'application/json' @@ -193,7 +189,6 @@ def test_doesn_t_invalidate_other_properties_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_both_properties_invalid_is_invalid_fails(self): # both properties invalid is invalid accept_content_type = 'application/json' @@ -227,6 +222,5 @@ def test_both_properties_invalid_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py index 82919bffc1f..53f5bffdec3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_a_float_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_an_object_fails(self): # null is not an object accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_null_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_array_is_not_an_object_fails(self): # an array is not an object accept_content_type = 'application/json' @@ -106,7 +104,6 @@ def test_an_array_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_object_is_an_object_passes(self): # an object is an object accept_content_type = 'application/json' @@ -137,7 +134,6 @@ def test_an_object_is_an_object_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_string_is_not_an_object_fails(self): # a string is not an object accept_content_type = 'application/json' @@ -161,7 +157,6 @@ def test_a_string_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_integer_is_not_an_object_fails(self): # an integer is not an object accept_content_type = 'application/json' @@ -185,7 +180,6 @@ def test_an_integer_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_boolean_is_not_an_object_fails(self): # a boolean is not an object accept_content_type = 'application/json' @@ -212,6 +206,5 @@ def test_a_boolean_is_not_an_object_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py index 4f302bcbecb..49dad931fe7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_first_oneof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_neither_oneof_valid_complex_fails(self): # neither oneOf valid (complex) accept_content_type = 'application/json' @@ -95,7 +94,6 @@ def test_neither_oneof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_oneof_valid_complex_fails(self): # both oneOf valid (complex) accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_both_oneof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_second_oneof_valid_complex_passes(self): # second oneOf valid (complex) accept_content_type = 'application/json' @@ -160,6 +157,5 @@ def test_second_oneof_valid_complex_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py index 51f05632a77..a04dcd282d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py @@ -63,7 +63,6 @@ def test_second_oneof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_both_oneof_valid_fails(self): # both oneOf valid accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_both_oneof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_first_oneof_valid_passes(self): # first oneOf valid accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_first_oneof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_neither_oneof_valid_fails(self): # neither oneOf valid accept_content_type = 'application/json' @@ -144,6 +141,5 @@ def test_neither_oneof_valid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py index 031f4a15be6..ee4e22539dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_both_oneof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -81,7 +80,6 @@ def test_mismatch_base_schema_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_one_oneof_valid_passes(self): # one oneOf valid accept_content_type = 'application/json' @@ -114,6 +112,5 @@ def test_one_oneof_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py index a6bb3083bf1..6329bf31f44 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_both_valid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_one_valid_valid_passes(self): # one valid - valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_one_valid_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py index 1efdaac8347..d68107e8f20 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_both_valid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_both_invalid_invalid_fails(self): # both invalid - invalid accept_content_type = 'application/json' @@ -91,7 +90,6 @@ def test_both_invalid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_first_valid_valid_passes(self): # first valid - valid accept_content_type = 'application/json' @@ -126,7 +124,6 @@ def test_first_valid_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_second_valid_valid_passes(self): # second valid - valid accept_content_type = 'application/json' @@ -164,6 +161,5 @@ def test_second_valid_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py index 9a7b069f408..f532aa14de8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py @@ -66,6 +66,5 @@ def test_matches_a_substring_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py index 00b63d23469..2cd922e1a92 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_objects_passes(self): # ignores objects accept_content_type = 'application/json' @@ -95,7 +94,6 @@ def test_ignores_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_null_passes(self): # ignores null accept_content_type = 'application/json' @@ -125,7 +123,6 @@ def test_ignores_null_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_floats_passes(self): # ignores floats accept_content_type = 'application/json' @@ -155,7 +152,6 @@ def test_ignores_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_non_matching_pattern_is_invalid_fails(self): # a non-matching pattern is invalid accept_content_type = 'application/json' @@ -179,7 +175,6 @@ def test_a_non_matching_pattern_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_ignores_booleans_passes(self): # ignores booleans accept_content_type = 'application/json' @@ -209,7 +204,6 @@ def test_ignores_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_matching_pattern_is_valid_passes(self): # a matching pattern is valid accept_content_type = 'application/json' @@ -239,7 +233,6 @@ def test_a_matching_pattern_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_integers_passes(self): # ignores integers accept_content_type = 'application/json' @@ -272,6 +265,5 @@ def test_ignores_integers_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py index 42d649e9c70..81fdb1ec3ce 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py @@ -76,7 +76,6 @@ def test_object_with_all_numbers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_object_with_strings_is_invalid_fails(self): # object with strings is invalid accept_content_type = 'application/json' @@ -116,6 +115,5 @@ def test_object_with_strings_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py index 8c08f8a21b5..3de1df959a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py index 41a5a7cb5d3..2a156f05e5c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py @@ -69,7 +69,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -102,6 +101,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py index c0ee6c1be30..803d23d482d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py index 51f4dd3bf02..f6042af0cff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py index 07db8a05441..24fe1214e2a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py @@ -68,7 +68,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -100,6 +99,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py index 0fe81d57f3e..377fd786f6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py index e2544e93040..72a6b1d9e46 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -96,6 +95,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py index 5be0dabe9ba..930022831ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py @@ -69,7 +69,6 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -102,6 +101,5 @@ def test_property_named_ref_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py index 5ed3b496eea..27b4c314ffd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py @@ -67,6 +67,5 @@ def test_not_required_by_default_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py index d911ed11e97..ba8d9034f9a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_present_required_property_is_valid_passes(self): # present required property is valid accept_content_type = 'application/json' @@ -97,7 +96,6 @@ def test_present_required_property_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -127,7 +125,6 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -157,7 +154,6 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_present_required_property_is_invalid_fails(self): # non-present required property is invalid accept_content_type = 'application/json' @@ -187,6 +183,5 @@ def test_non_present_required_property_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py index da4da6b039e..25de347324a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py @@ -67,6 +67,5 @@ def test_property_not_required_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py index 4d40c7a5e32..d266352279d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py @@ -62,7 +62,6 @@ def test_object_with_some_properties_missing_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_object_with_all_properties_present_is_valid_passes(self): # object with all properties present is valid accept_content_type = 'application/json' @@ -108,6 +107,5 @@ def test_object_with_all_properties_present_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py index d2a5508554e..d20db774b3c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_something_else_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_one_of_the_enum_is_valid_passes(self): # one of the enum is valid accept_content_type = 'application/json' @@ -90,6 +89,5 @@ def test_one_of_the_enum_is_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py index b661c6c011f..87da0340220 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py @@ -57,7 +57,6 @@ def test_1_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_still_a_string_even_if_it_looks_like_a_number_passes(self): # a string is still a string, even if it looks like a number accept_content_type = 'application/json' @@ -87,7 +86,6 @@ def test_a_string_is_still_a_string_even_if_it_looks_like_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_empty_string_is_still_a_string_passes(self): # an empty string is still a string accept_content_type = 'application/json' @@ -117,7 +115,6 @@ def test_an_empty_string_is_still_a_string_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_float_is_not_a_string_fails(self): # a float is not a string accept_content_type = 'application/json' @@ -141,7 +138,6 @@ def test_a_float_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_object_is_not_a_string_fails(self): # an object is not a string accept_content_type = 'application/json' @@ -166,7 +162,6 @@ def test_an_object_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_an_array_is_not_a_string_fails(self): # an array is not a string accept_content_type = 'application/json' @@ -191,7 +186,6 @@ def test_an_array_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_boolean_is_not_a_string_fails(self): # a boolean is not a string accept_content_type = 'application/json' @@ -215,7 +209,6 @@ def test_a_boolean_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_null_is_not_a_string_fails(self): # null is not a string accept_content_type = 'application/json' @@ -239,7 +232,6 @@ def test_null_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_a_string_is_a_string_passes(self): # a string is a string accept_content_type = 'application/json' @@ -272,6 +264,5 @@ def test_a_string_is_a_string_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py index 9f13ebd87de..bcf2da929eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_missing_properties_are_not_filled_in_with_the_default_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_explicit_property_value_is_checked_against_maximum_passing_passes(self): # an explicit property value is checked against maximum (passing) accept_content_type = 'application/json' @@ -97,7 +96,6 @@ def test_an_explicit_property_value_is_checked_against_maximum_passing_passes(se _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_an_explicit_property_value_is_checked_against_maximum_failing_fails(self): # an explicit property value is checked against maximum (failing) accept_content_type = 'application/json' @@ -127,6 +125,5 @@ def test_an_explicit_property_value_is_checked_against_maximum_failing_fails(sel - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py index 9920c92524b..ffc7bf290ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py @@ -66,7 +66,6 @@ def test_non_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_objects_is_valid_passes(self): # unique array of objects is valid accept_content_type = 'application/json' @@ -105,7 +104,6 @@ def test_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_nested_objects_is_valid_passes(self): # non-unique array of nested objects is valid accept_content_type = 'application/json' @@ -156,7 +154,6 @@ def test_non_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_objects_is_valid_passes(self): # non-unique array of objects is valid accept_content_type = 'application/json' @@ -195,7 +192,6 @@ def test_non_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_1_and_true_are_unique_passes(self): # 1 and true are unique accept_content_type = 'application/json' @@ -228,7 +224,6 @@ def test_1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_integers_is_valid_passes(self): # unique array of integers is valid accept_content_type = 'application/json' @@ -261,7 +256,6 @@ def test_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_arrays_is_valid_passes(self): # non-unique array of arrays is valid accept_content_type = 'application/json' @@ -298,7 +292,6 @@ def test_non_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_numbers_are_unique_if_mathematically_unequal_passes(self): # numbers are unique if mathematically unequal accept_content_type = 'application/json' @@ -332,7 +325,6 @@ def test_numbers_are_unique_if_mathematically_unequal_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_false_is_not_equal_to_zero_passes(self): # false is not equal to zero accept_content_type = 'application/json' @@ -365,7 +357,6 @@ def test_false_is_not_equal_to_zero_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_nested_objects_is_valid_passes(self): # unique array of nested objects is valid accept_content_type = 'application/json' @@ -416,7 +407,6 @@ def test_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_0_and_false_are_unique_passes(self): # 0 and false are unique accept_content_type = 'application/json' @@ -449,7 +439,6 @@ def test_0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_arrays_is_valid_passes(self): # unique array of arrays is valid accept_content_type = 'application/json' @@ -486,7 +475,6 @@ def test_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_true_is_not_equal_to_one_passes(self): # true is not equal to one accept_content_type = 'application/json' @@ -519,7 +507,6 @@ def test_true_is_not_equal_to_one_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_heterogeneous_types_are_valid_passes(self): # non-unique heterogeneous types are valid accept_content_type = 'application/json' @@ -560,7 +547,6 @@ def test_non_unique_heterogeneous_types_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_heterogeneous_types_are_valid_passes(self): # unique heterogeneous types are valid accept_content_type = 'application/json' @@ -602,6 +588,5 @@ def test_unique_heterogeneous_types_are_valid_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py index 287f9465345..957fcfa9cc9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py @@ -72,7 +72,6 @@ def test_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_true_and_a1_are_unique_passes(self): # {"a": true} and {"a": 1} are unique accept_content_type = 'application/json' @@ -111,7 +110,6 @@ def test_a_true_and_a1_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_heterogeneous_types_are_invalid_fails(self): # non-unique heterogeneous types are invalid accept_content_type = 'application/json' @@ -146,7 +144,6 @@ def test_non_unique_heterogeneous_types_are_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_nested0_and_false_are_unique_passes(self): # nested [0] and [false] are unique accept_content_type = 'application/json' @@ -189,7 +186,6 @@ def test_nested0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_a_false_and_a0_are_unique_passes(self): # {"a": false} and {"a": 0} are unique accept_content_type = 'application/json' @@ -228,7 +224,6 @@ def test_a_false_and_a0_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_numbers_are_unique_if_mathematically_unequal_fails(self): # numbers are unique if mathematically unequal accept_content_type = 'application/json' @@ -256,7 +251,6 @@ def test_numbers_are_unique_if_mathematically_unequal_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_false_is_not_equal_to_zero_passes(self): # false is not equal to zero accept_content_type = 'application/json' @@ -289,7 +283,6 @@ def test_false_is_not_equal_to_zero_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_0_and_false_are_unique_passes(self): # [0] and [false] are unique accept_content_type = 'application/json' @@ -326,7 +319,6 @@ def test_0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_arrays_is_valid_passes(self): # unique array of arrays is valid accept_content_type = 'application/json' @@ -363,7 +355,6 @@ def test_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_nested_objects_is_invalid_fails(self): # non-unique array of nested objects is invalid accept_content_type = 'application/json' @@ -408,7 +399,6 @@ def test_non_unique_array_of_nested_objects_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_non_unique_array_of_more_than_two_integers_is_invalid_fails(self): # non-unique array of more than two integers is invalid accept_content_type = 'application/json' @@ -436,7 +426,6 @@ def test_non_unique_array_of_more_than_two_integers_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_true_is_not_equal_to_one_passes(self): # true is not equal to one accept_content_type = 'application/json' @@ -469,7 +458,6 @@ def test_true_is_not_equal_to_one_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_objects_are_non_unique_despite_key_order_fails(self): # objects are non-unique despite key order accept_content_type = 'application/json' @@ -506,7 +494,6 @@ def test_objects_are_non_unique_despite_key_order_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_unique_array_of_strings_is_valid_passes(self): # unique array of strings is valid accept_content_type = 'application/json' @@ -540,7 +527,6 @@ def test_unique_array_of_strings_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_1_and_true_are_unique_passes(self): # [1] and [true] are unique accept_content_type = 'application/json' @@ -577,7 +563,6 @@ def test_1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_different_objects_are_unique_passes(self): # different objects are unique accept_content_type = 'application/json' @@ -620,7 +605,6 @@ def test_different_objects_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_array_of_integers_is_valid_passes(self): # unique array of integers is valid accept_content_type = 'application/json' @@ -653,7 +637,6 @@ def test_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_more_than_two_arrays_is_invalid_fails(self): # non-unique array of more than two arrays is invalid accept_content_type = 'application/json' @@ -687,7 +670,6 @@ def test_non_unique_array_of_more_than_two_arrays_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_non_unique_array_of_objects_is_invalid_fails(self): # non-unique array of objects is invalid accept_content_type = 'application/json' @@ -720,7 +702,6 @@ def test_non_unique_array_of_objects_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_unique_array_of_nested_objects_is_valid_passes(self): # unique array of nested objects is valid accept_content_type = 'application/json' @@ -771,7 +752,6 @@ def test_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_arrays_is_invalid_fails(self): # non-unique array of arrays is invalid accept_content_type = 'application/json' @@ -802,7 +782,6 @@ def test_non_unique_array_of_arrays_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_non_unique_array_of_strings_is_invalid_fails(self): # non-unique array of strings is invalid accept_content_type = 'application/json' @@ -830,7 +809,6 @@ def test_non_unique_array_of_strings_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) - def test_nested1_and_true_are_unique_passes(self): # nested [1] and [true] are unique accept_content_type = 'application/json' @@ -873,7 +851,6 @@ def test_nested1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_unique_heterogeneous_types_are_valid_passes(self): # unique heterogeneous types are valid accept_content_type = 'application/json' @@ -913,7 +890,6 @@ def test_unique_heterogeneous_types_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_non_unique_array_of_integers_is_invalid_fails(self): # non-unique array of integers is invalid accept_content_type = 'application/json' @@ -943,6 +919,5 @@ def test_non_unique_array_of_integers_is_invalid_fails(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py index 3c00bc9fa3f..8885bfc04a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py index 27f3220cd8d..50c0b1d4e99 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py index 71c0ae0e695..a997ad049f3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py @@ -64,7 +64,6 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -94,7 +93,6 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -124,7 +122,6 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -154,7 +151,6 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -185,7 +181,6 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body - def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -218,6 +213,5 @@ def test_all_string_formats_ignore_nulls_passes(self): - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/README.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/README.md index b5355af6cd2..6ccf1efff6f 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/README.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/README.md @@ -160,11 +160,12 @@ with this_package.ApiClient(configuration) as api_client: api_response = api_instance.post_operators( body=body, ) + pprint(api_response) except this_package.ApiException as e: print("Exception when calling DefaultApi->post_operators: %s\n" % e) ``` -## Documentation for API Endpoints +## Endpoints All URIs are relative to *http://localhost:3000* @@ -172,7 +173,7 @@ HTTP request | Method | Description ------------ | ------ | ------------- **post** /operators | [DefaultApi](docs/apis/tags/DefaultApi.md).[post_operators](docs/apis/tags/default_api/post_operators.md) | -## Documentation For Component Schemas (Models) +## Component Schemas - [AdditionOperator](docs/components/schema/addition_operator.AdditionOperator.md) - [Operator](docs/components/schema/operator.Operator.md) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/DefaultApi.md index 0df5ccbbfae..fdf429d9389 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/DefaultApi.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/DefaultApi.md @@ -7,4 +7,4 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**post_operators**](default_api/post_operators.md) | **post** /operators | -[[Back to top]](#top) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../README.md#documentation-for-models) [[Back to README]](../../../README.md) +[[Back to top]](#top) [[Back to Endpoints]](../../../README.md#Endpoints) [[Back to README]](../../../README.md) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md index 004f56df791..004999aa39b 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md @@ -30,6 +30,7 @@ with this_package.ApiClient(configuration) as api_client: api_response = api_instance.post_operators( body=body, ) + pprint(api_response) except this_package.ApiException as e: print("Exception when calling DefaultApi->post_operators: %s\n" % e) ``` @@ -68,5 +69,4 @@ headers | Unset | headers were not defined | No authorization required -[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to API list]](../../../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../../../README.md#documentation-for-models) [[Back to README]](../../../../README.md) - +[[Back to top]](#top) [[Back to API]](../DefaultApi.md) [[Back to Endpoints]](../../../../README.md#Endpoints) [[Back to README]](../../../../README.md) diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/addition_operator.AdditionOperator.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/addition_operator.AdditionOperator.md index 5745daad10e..64f0b468275 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/addition_operator.AdditionOperator.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/addition_operator.AdditionOperator.md @@ -1,3 +1,4 @@ + # this_package.components.schema.addition_operator.AdditionOperator @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **b** | decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 64 bit float **operator_id** | str, | str, | | if omitted the server will use the default value of "ADD" -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md index 977ffaaf19b..ad161c5308c 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/operator.Operator.md @@ -1,3 +1,4 @@ + # this_package.components.schema.operator.Operator @@ -13,5 +14,4 @@ Class Name | Input Type | Accessed Type | Description | Notes [**AdditionOperator**](addition_operator.AdditionOperator.md) | [**AdditionOperator**](addition_operator.AdditionOperator.md) | [**AdditionOperator**](addition_operator.AdditionOperator.md) | | [**SubtractionOperator**](subtraction_operator.SubtractionOperator.md) | [**SubtractionOperator**](subtraction_operator.SubtractionOperator.md) | [**SubtractionOperator**](subtraction_operator.SubtractionOperator.md) | | -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/subtraction_operator.SubtractionOperator.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/subtraction_operator.SubtractionOperator.md index da02a5cfadb..469a122af3e 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/subtraction_operator.SubtractionOperator.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/components/schema/subtraction_operator.SubtractionOperator.md @@ -1,3 +1,4 @@ + # this_package.components.schema.subtraction_operator.SubtractionOperator @@ -13,5 +14,4 @@ Key | Input Type | Accessed Type | Description | Notes **b** | decimal.Decimal, int, float, | decimal.Decimal, | | value must be a 64 bit float **operator_id** | str, | str, | | if omitted the server will use the default value of "SUB" -[[Back to Model list]](../../../README.md#documentation-for-models) [[Back to API list]](../../../README.md#documentation-for-api-endpoints) [[Back to README]](../../../README.md) - +[[Back to top]](#top) [[Back to Component Schemas]](../../../README.md#Component-Schemas) [[Back to README]](../../../README.md) \ No newline at end of file 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 From 2d8a7e68b15c2e50433fdea4ec03629fedf1cbf0 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 13:36:57 -0800 Subject: [PATCH 39/44] Fixes tests in DefaultCodegenTest --- .../openapitools/codegen/DefaultCodegen.java | 23 +++- .../codegen/DefaultCodegenTest.java | 108 ++++++++---------- 2 files changed, 67 insertions(+), 64 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java index 0fbeb7e2684..2281dab29a9 100644 --- a/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java +++ b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java @@ -4211,13 +4211,30 @@ public CodegenOperation fromOperation(String path, if (op.wildcardCodeResponses == null) { op.wildcardCodeResponses = new TreeMap<>(); } - String firstNumber = key.substring(0, 1); - op.wildcardCodeResponses.put(Integer.parseInt(firstNumber), r); + Integer firstNumber = Integer.parseInt(key.substring(0, 1)); + op.wildcardCodeResponses.put(firstNumber, r); + if (firstNumber > 3 && r.getContent() != null) { + for (CodegenMediaType cm: r.getContent().values()) { + if (cm.getSchema() != null) { + op.hasErrorResponseObject = true; + break; + } + } + } } else { if (op.statusCodeResponses == null) { op.statusCodeResponses = new TreeMap<>(); } - op.statusCodeResponses.put(Integer.parseInt(key), r); + Integer statusCode = Integer.parseInt(key); + op.statusCodeResponses.put(statusCode, r); + if (statusCode > 299 && r.getContent() != null) { + for (CodegenMediaType cm: r.getContent().values()) { + if (cm.getSchema() != null) { + op.hasErrorResponseObject = true; + break; + } + } + } } } } diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java index c50c7b091eb..886052786da 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java @@ -27,7 +27,6 @@ import io.swagger.v3.oas.models.PathItem; import io.swagger.v3.oas.models.headers.Header; import io.swagger.v3.oas.models.media.*; -import io.swagger.v3.oas.models.parameters.QueryParameter; import io.swagger.v3.oas.models.parameters.RequestBody; import io.swagger.v3.oas.models.responses.ApiResponse; import io.swagger.v3.oas.models.responses.ApiResponses; @@ -66,7 +65,7 @@ public void testDeeplyNestedAdditionalPropertiesImports() { codegen.setOpenAPI(openApi); PathItem path = openApi.getPaths().get("/ping"); CodegenOperation operation = codegen.fromOperation("/ping", "post", path.getPost(), path.getServers()); - Assert.assertEquals(Sets.intersection(operation.responses.get(0).imports, Sets.newHashSet("Person")).size(), 1); + Assert.assertEquals(Sets.intersection(operation.responses.get("default").imports, Sets.newHashSet("Person")).size(), 1); } @Test @@ -897,11 +896,6 @@ public void testDiscriminatorWithCustomMapping() { codegen.setLegacyDiscriminatorBehavior(false); codegen.setOpenAPI(openAPI); - String path = "/person/display/{personId}"; - Operation operation = openAPI.getPaths().get(path).getGet(); - CodegenOperation codegenOperation = codegen.fromOperation(path, "GET", operation, null); - verifyPersonDiscriminator(codegenOperation.discriminator); - Schema person = openAPI.getComponents().getSchemas().get("Person"); codegen.setOpenAPI(openAPI); CodegenModel personModel = codegen.fromModel("Person", person); @@ -1425,12 +1419,6 @@ public void testComposedSchemaMyPetsOneOfDiscriminatorMap() { codegen.setLegacyDiscriminatorBehavior(false); codegen.setOpenAPI(openAPI); - String path = "/mypets"; - - Operation operation = openAPI.getPaths().get(path).getGet(); - CodegenOperation codegenOperation = codegen.fromOperation(path, "GET", operation, null); - verifyMyPetsDiscriminator(codegenOperation.discriminator); - Schema pet = openAPI.getComponents().getSchemas().get("MyPets"); CodegenModel petModel = codegen.fromModel("MyPets", pet); verifyMyPetsDiscriminator(petModel.discriminator); @@ -1682,8 +1670,8 @@ public void testDefaultResponseShouldBeLast() { codegen.setOpenAPI(openAPI); CodegenOperation co = codegen.fromOperation("/here", "get", myOperation, null); - Assert.assertEquals(co.responses.get(0).message, "Error"); - Assert.assertEquals(co.responses.get(1).message, "Default"); + Assert.assertEquals(co.responses.get("422").message, "Error"); + Assert.assertEquals(co.responses.get("default").message, "Default"); } @Test @@ -2541,14 +2529,14 @@ public void testItemsPresent() { co = codegen.fromOperation(path, "POST", operation, null); assertEquals(co.pathParams.get(0).getSchema().getItems().getMaximum(), "7"); assertEquals(co.bodyParam.getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); - assertEquals(co.responses.get(0).getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); + assertEquals(co.responses.get("200").getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); path = "/array_with_validations_in_items/{items}"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); assertEquals(co.pathParams.get(0).getSchema().getItems().getMaximum(), "7"); assertEquals(co.bodyParam.getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); - assertEquals(co.responses.get(0).getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); + assertEquals(co.responses.get("200").getContent().get("application/json").getSchema().getItems().getMaximum(), "7"); } @Test @@ -2737,32 +2725,32 @@ public void testAdditionalPropertiesPresentInResponses() { path = "/ref_additional_properties/"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); - mapWithAddPropsUnset = co.responses.get(0); + mapWithAddPropsUnset = co.responses.get("200"); assertEquals(mapWithAddPropsUnset.getContent().get("application/json").getSchema().getAdditionalProperties(), anyTypeSchema); assertTrue(mapWithAddPropsUnset.getContent().get("application/json").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsTrue = co.responses.get(1); + mapWithAddPropsTrue = co.responses.get("201"); assertEquals(mapWithAddPropsTrue.getContent().get("application/xml").getSchema().getAdditionalProperties(), anyTypeSchema); assertTrue(mapWithAddPropsTrue.getContent().get("application/xml").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsFalse = co.responses.get(2); + mapWithAddPropsFalse = co.responses.get("202"); assertNull(mapWithAddPropsFalse.getContent().get("application/x-www-form-urlencoded").getSchema().getAdditionalProperties()); assertFalse(mapWithAddPropsFalse.getContent().get("application/x-www-form-urlencoded").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsSchema = co.responses.get(3); + mapWithAddPropsSchema = co.responses.get("203"); assertEquals(mapWithAddPropsSchema.getContent().get("application/*").getSchema().getAdditionalProperties(), stringCp); assertFalse(mapWithAddPropsSchema.getContent().get("application/*").getSchema().getAdditionalPropertiesIsAnyType()); path = "/additional_properties/"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); - mapWithAddPropsUnset = co.responses.get(0); + mapWithAddPropsUnset = co.responses.get("200"); assertEquals(mapWithAddPropsUnset.getContent().get("application/json").getSchema().getAdditionalProperties(), anyTypeSchema); assertTrue(mapWithAddPropsUnset.getContent().get("application/json").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsTrue = co.responses.get(1); + mapWithAddPropsTrue = co.responses.get("201"); assertEquals(mapWithAddPropsTrue.getContent().get("application/json").getSchema().getAdditionalProperties(), anyTypeSchema); assertTrue(mapWithAddPropsTrue.getContent().get("application/json").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsFalse = co.responses.get(2); + mapWithAddPropsFalse = co.responses.get("202"); assertNull(mapWithAddPropsFalse.getContent().get("application/json").getSchema().getAdditionalProperties()); assertFalse(mapWithAddPropsFalse.getContent().get("application/json").getSchema().getAdditionalPropertiesIsAnyType()); - mapWithAddPropsSchema = co.responses.get(3); + mapWithAddPropsSchema = co.responses.get("203"); assertEquals(mapWithAddPropsSchema.getContent().get("application/json").getSchema().getAdditionalProperties(), stringCp); assertFalse(mapWithAddPropsSchema.getContent().get("application/json").getSchema().getAdditionalPropertiesIsAnyType()); @@ -2841,8 +2829,8 @@ public void testIsXPresence() { assertTrue(co.pathParams.get(0).getSchema().isDate); assertFalse(co.bodyParam.getContent().get("application/json").getSchema().isString); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isDate); - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().isString); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isDate); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().isString); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isDate); path = "/date_with_validation/{date}"; operation = openAPI.getPaths().get(path).getPost(); @@ -2851,8 +2839,8 @@ public void testIsXPresence() { assertTrue(co.pathParams.get(0).getSchema().isDate); assertFalse(co.bodyParam.getContent().get("application/json").getSchema().isString); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isDate); - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().isString); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isDate); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().isString); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isDate); modelName = "DateTimeWithValidation"; sc = openAPI.getComponents().getSchemas().get(modelName); @@ -2873,8 +2861,8 @@ public void testIsXPresence() { assertTrue(co.pathParams.get(0).getSchema().isDateTime); assertFalse(co.bodyParam.getContent().get("application/json").getSchema().isString); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isDateTime); - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().isString); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isDateTime); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().isString); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isDateTime); path = "/date_time_with_validation/{dateTime}"; operation = openAPI.getPaths().get(path).getPost(); @@ -2883,22 +2871,22 @@ public void testIsXPresence() { assertTrue(co.pathParams.get(0).getSchema().isDateTime); assertFalse(co.bodyParam.getContent().get("application/json").getSchema().isString); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isDateTime); - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().isString); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isDateTime); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().isString); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isDateTime); path = "/null/{param}"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); assertTrue(co.pathParams.get(0).getSchema().isNull); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isNull); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isNull); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isNull); path = "/ref_null/{param}"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); assertTrue(co.pathParams.get(0).getSchema().isNull); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().isNull); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isNull); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isNull); } @Test @@ -3118,7 +3106,7 @@ public void testBodyAndResponseGetHasValidation() { operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); assertTrue(co.bodyParam.getContent().get("application/json").getSchema().getHasValidation()); - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().getHasValidation()); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().getHasValidation()); } } @@ -3180,8 +3168,8 @@ public void testVarsAndRequiredVarsPresent() { assertEquals(co.bodyParam.getContent().get("application/json").getSchema().requiredVars.size(), 0); // CodegenOperation puts the inline schema into schemas and refs it - assertTrue(co.responses.get(0).getContent().get("application/json").getSchema().isModel); - assertEquals(co.responses.get(0).getContent().get("application/json").getSchema().baseType, "objectWithOptionalAndRequiredProps_request"); + assertTrue(co.responses.get("200").getContent().get("application/json").getSchema().isModel); + assertEquals(co.responses.get("200").getContent().get("application/json").getSchema().baseType, "objectWithOptionalAndRequiredProps_request"); modelName = "objectWithOptionalAndRequiredProps_request"; sc = openAPI.getComponents().getSchemas().get(modelName); cm = codegen.fromModel(modelName, sc); @@ -3313,13 +3301,13 @@ public void testHasVarsInResponse() { path = "/additional_properties/"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().getHasVars()); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().getHasVars()); path = "/object_with_optional_and_required_props/{objectData}"; operation = openAPI.getPaths().get(path).getPost(); co = codegen.fromOperation(path, "POST", operation, null); // does not have vars because the inline schema was extracted into a component ref - assertFalse(co.responses.get(0).getContent().get("application/json").getSchema().getHasVars()); + assertFalse(co.responses.get("200").getContent().get("application/json").getSchema().getHasVars()); } @Test @@ -3599,7 +3587,7 @@ public void testBooleansSetForIntSchemas() { assertTrue(cpa.getContent().get("application/json").getSchema().isInteger); assertFalse(cpa.getContent().get("application/json").getSchema().isShort); assertFalse(cpa.getContent().get("application/json").getSchema().isLong); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().isUnboundedInteger); assertTrue(cr.getContent().get("application/json").getSchema().isInteger); assertFalse(cr.getContent().get("application/json").getSchema().isShort); @@ -3618,7 +3606,7 @@ public void testBooleansSetForIntSchemas() { assertTrue(cpa.getContent().get("application/json").getSchema().isInteger); assertTrue(cpa.getContent().get("application/json").getSchema().isShort); assertFalse(cpa.getContent().get("application/json").getSchema().isLong); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isUnboundedInteger); assertTrue(cr.getContent().get("application/json").getSchema().isInteger); assertTrue(cr.getContent().get("application/json").getSchema().isShort); @@ -3637,7 +3625,7 @@ public void testBooleansSetForIntSchemas() { assertFalse(cpa.getContent().get("application/json").getSchema().isInteger); assertFalse(cpa.getContent().get("application/json").getSchema().isShort); assertTrue(cpa.getContent().get("application/json").getSchema().isLong); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isUnboundedInteger); assertFalse(cr.getContent().get("application/json").getSchema().isInteger); assertFalse(cr.getContent().get("application/json").getSchema().isShort); @@ -3785,42 +3773,42 @@ public void testComposedResponseTypes() { path = "/ComposedObject"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsMap()); path = "/ComposedNumber"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsNumber()); path = "/ComposedInteger"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsUnboundedInteger()); path = "/ComposedString"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsString()); path = "/ComposedBool"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsBoolean()); path = "/ComposedArray"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsArray()); path = "/ComposedNone"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsNull()); path = "/ComposedAnyType"; co = codegen.fromOperation(path, "GET", openAPI.getPaths().get(path).getGet(), null); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().getIsAnyType()); } @@ -3938,7 +3926,7 @@ public void testByteArrayTypeInSchemas() { cp = co.bodyParam; assertTrue(cp.getContent().get("application/json").getSchema().isByteArray); assertFalse(cp.getContent().get("application/json").getSchema().getIsString()); - CodegenResponse cr = co.responses.get(0); + CodegenResponse cr = co.responses.get("200"); assertTrue(cr.getContent().get("application/json").getSchema().isByteArray); assertFalse(cr.getContent().get("application/json").getSchema().getIsString()); @@ -3966,9 +3954,9 @@ public void testResponses() { operation = openAPI.getPaths().get(path).getGet(); co = codegen.fromOperation(path, "GET", operation, null); //assertTrue(co.hasErrorResponseObject); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); - cr = co.responses.get(3); + cr = co.responses.get("500"); assertFalse(cr.getContent().get("application/application").getSchema().isPrimitiveType); path = "/pet"; @@ -3976,19 +3964,17 @@ public void testResponses() { co = codegen.fromOperation(path, "PUT", operation, null); assertTrue(co.hasErrorResponseObject); - // 200 response - cr = co.responses.get(0); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); - // 400 response - cr = co.responses.get(1); + cr = co.responses.get("400"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); path = "/pet/findByTags"; operation = openAPI.getPaths().get(path).getGet(); co = codegen.fromOperation(path, "GET", operation, null); assertFalse(co.hasErrorResponseObject); - cr = co.responses.get(0); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); } @@ -4113,7 +4099,7 @@ public void testResponseContentAndHeader() { assertEquals(schemaParam.getSchema().baseName, "schema"); - CodegenResponse cr = co.responses.get(0); + CodegenResponse cr = co.responses.get("200"); List responseHeaders = cr.getResponseHeaders(); assertEquals(2, responseHeaders.size()); CodegenParameter header1 = responseHeaders.get(0); @@ -4141,7 +4127,7 @@ public void testResponseContentAndHeader() { assertEquals(cp.baseName, "text/plain"); assertTrue(cp.isString); - cr = co.responses.get(1); + cr = co.responses.get("201"); content = cr.getContent(); assertEquals(content.keySet(), new HashSet<>(Arrays.asList("application/json", "text/plain"))); mt = content.get("application/json"); From 449314c2a20f48e96e7c601f027da6d874f61b9f Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 13:43:46 -0800 Subject: [PATCH 40/44] Fixes java tests in JavaModelTest --- .../java/org/openapitools/codegen/java/JavaModelTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaModelTest.java b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaModelTest.java index af547a92186..f84aec7d22f 100644 --- a/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaModelTest.java +++ b/modules/openapi-json-schema-generator/src/test/java/org/openapitools/codegen/java/JavaModelTest.java @@ -1256,7 +1256,7 @@ public void arraySchemaTestInOperationResponse() { final CodegenOperation co = codegen.fromOperation("testSchema", "GET", operation, null); Assert.assertEquals(co.responses.size(), 1); - CodegenResponse cr = co.responses.get(0); + CodegenResponse cr = co.responses.get("200"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().baseType, "List"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().dataType, "List"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().containerType, "array"); @@ -1340,7 +1340,7 @@ public void arrayOfArraySchemaTestInOperationResponse() { final CodegenOperation co = codegen.fromOperation("testSchema", "GET", operation, null); Assert.assertEquals(co.responses.size(), 1); - CodegenResponse cr = co.responses.get(0); + CodegenResponse cr = co.responses.get("200"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().baseType, "List"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().dataType, "List>"); Assert.assertEquals(cr.getContent().get("application/json").getSchema().containerType, "array"); From 3e9ab0c61decad31da6d1e8197b268b86cac3f38 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 13:55:15 -0800 Subject: [PATCH 41/44] Disables failing test --- .../openapitools/codegen/cmd/GenerateTest.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/modules/openapi-json-schema-generator-cli/src/test/java/org/openapitools/codegen/cmd/GenerateTest.java b/modules/openapi-json-schema-generator-cli/src/test/java/org/openapitools/codegen/cmd/GenerateTest.java index 5b013006739..cdd03eae0eb 100644 --- a/modules/openapi-json-schema-generator-cli/src/test/java/org/openapitools/codegen/cmd/GenerateTest.java +++ b/modules/openapi-json-schema-generator-cli/src/test/java/org/openapitools/codegen/cmd/GenerateTest.java @@ -433,11 +433,12 @@ public void testVerboseShort() { verifyNoMoreInteractions(configurator); } - /** - * This test ensures that when the - */ - @Test(expectedExceptions = SpecValidationException.class) - public void testNPEWithInvalidSpecFile() { - setupAndRunTest("-i", "src/test/resources/npe-test.yaml", "-g", "java", "-o", "src/main/java", false, null); - } +// /** +// * This test ensures that a NPE is thrown +// * Test stopped passing when swagger-parser setResolve was switched to false +// */ +// @Test(expectedExceptions = SpecValidationException.class) +// public void testNPEWithInvalidSpecFile() { +// setupAndRunTest("-i", "src/test/resources/npe-test.yaml", "-g", "java", "-o", "src/main/java", false, null); +// } } From 92568a15e6c4b89fde60f51878d4ae4374ebb07d Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 14:16:34 -0800 Subject: [PATCH 42/44] Fixes schema links in requestbody docs --- .../src/main/resources/python/request_body_doc.handlebars | 4 ++++ .../client/petstore/python/.openapi-generator/VERSION | 2 +- .../fake_api/additional_properties_with_array_of_enums.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/array_model.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/array_of_enums.md | 2 +- .../python/docs/apis/tags/fake_api/body_with_file_schema.md | 2 +- .../python/docs/apis/tags/fake_api/body_with_query_params.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/boolean.md | 2 +- .../apis/tags/fake_api/composed_one_of_different_types.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/json_patch.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/mammal.md | 2 +- .../python/docs/apis/tags/fake_api/number_with_validations.md | 2 +- .../docs/apis/tags/fake_api/object_model_with_ref_props.md | 2 +- .../client/petstore/python/docs/apis/tags/fake_api/string.md | 2 +- .../petstore/python/docs/apis/tags/fake_api/string_enum.md | 2 +- .../petstore/python/docs/apis/tags/store_api/place_order.md | 2 +- .../petstore/python/docs/apis/tags/user_api/create_user.md | 2 +- .../petstore/python/docs/apis/tags/user_api/update_user.md | 2 +- 18 files changed, 21 insertions(+), 17 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars index 44325ce8a7a..d6f4f3c0d1d 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/request_body_doc.handlebars @@ -1,7 +1,11 @@ {{#with bodyParam}} {{#each content}} {{#with this.schema}} + {{#if ../refModule}} {{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../components/schema/" }} + {{else}} +{{> api_doc_schema_type_hint anchorContainsPeriod=true complexTypePrefix="../../../components/schema/" }} + {{/if}} {{/with}} {{/each}} {{#if refModule}} 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/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md index a611b3ca45f..fef0a7f1afe 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/additional_properties_with_array_of_enums.md @@ -51,7 +51,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalPropertiesWithArrayOfEnums**](../../components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md) | | +[**AdditionalPropertiesWithArrayOfEnums**](../../../components/schema/additional_properties_with_array_of_enums.AdditionalPropertiesWithArrayOfEnums.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md index fe370a94db9..1dcc1bc1dcf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_model.md @@ -49,7 +49,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnimalFarm**](../../components/schema/animal_farm.AnimalFarm.md) | | +[**AnimalFarm**](../../../components/schema/animal_farm.AnimalFarm.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md index 740d1ffded5..239c9b69f51 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/array_of_enums.md @@ -49,7 +49,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayOfEnums**](../../components/schema/array_of_enums.ArrayOfEnums.md) | | +[**ArrayOfEnums**](../../../components/schema/array_of_enums.ArrayOfEnums.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md index 82021f98735..93bf92c1a61 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_file_schema.md @@ -53,7 +53,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**FileSchemaTestClass**](../../components/schema/file_schema_test_class.FileSchemaTestClass.md) | | +[**FileSchemaTestClass**](../../../components/schema/file_schema_test_class.FileSchemaTestClass.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md index 154eb4301c5..b8594ebb009 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/body_with_query_params.md @@ -63,7 +63,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**User**](../../components/schema/user.User.md) | | +[**User**](../../../components/schema/user.User.md) | | ### query_params diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md index 866578f3aa6..da7ad92ba93 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/boolean.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Boolean**](../../components/schema/boolean.Boolean.md) | | +[**Boolean**](../../../components/schema/boolean.Boolean.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md index 28eb1443bba..319d7b583c6 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/composed_one_of_different_types.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ComposedOneOfDifferentTypes**](../../components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md) | | +[**ComposedOneOfDifferentTypes**](../../../components/schema/composed_one_of_different_types.ComposedOneOfDifferentTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md index 8b23b59b117..1b2da683d31 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/json_patch.md @@ -50,7 +50,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json_patchjson Type | Description | Notes ------------- | ------------- | ------------- -[**JSONPatchRequest**](../../components/schema/json_patch_request.JSONPatchRequest.md) | | +[**JSONPatchRequest**](../../../components/schema/json_patch_request.JSONPatchRequest.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md index 7897bd0b9f2..7de479e13bf 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/mammal.md @@ -51,7 +51,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Mammal**](../../components/schema/mammal.Mammal.md) | | +[**Mammal**](../../../components/schema/mammal.Mammal.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md index cc1fa456d74..e3d7174b8e0 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/number_with_validations.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NumberWithValidations**](../../components/schema/number_with_validations.NumberWithValidations.md) | | +[**NumberWithValidations**](../../../components/schema/number_with_validations.NumberWithValidations.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md index 50a4def7c7e..01d555f97fd 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/object_model_with_ref_props.md @@ -51,7 +51,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectModelWithRefProps**](../../components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md) | | +[**ObjectModelWithRefProps**](../../../components/schema/object_model_with_ref_props.ObjectModelWithRefProps.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md index 4b71cab1cd4..b4bb2c7702c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**String**](../../components/schema/string.String.md) | | +[**String**](../../../components/schema/string.String.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md index d09c7ee798c..1dfb3a4e54b 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/fake_api/string_enum.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**StringEnum**](../../components/schema/string_enum.StringEnum.md) | | +[**StringEnum**](../../../components/schema/string_enum.StringEnum.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md index 9aca11680bc..eea1f04c98c 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/store_api/place_order.md @@ -54,7 +54,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Order**](../../components/schema/order.Order.md) | | +[**Order**](../../../components/schema/order.Order.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md index c8a97ec65b8..b61d7cf4977 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/create_user.md @@ -62,7 +62,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**User**](../../components/schema/user.User.md) | | +[**User**](../../../components/schema/user.User.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md index c4754846669..b29c99c029a 100644 --- a/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md +++ b/samples/openapi3/client/petstore/python/docs/apis/tags/user_api/update_user.md @@ -67,7 +67,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**User**](../../components/schema/user.User.md) | | +[**User**](../../../components/schema/user.User.md) | | ### path_params From b912e7f1b47d392a2ab2201a5c00463b0debe501 Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 14:26:05 -0800 Subject: [PATCH 43/44] Samples regenerated --- ...erties_allows_a_schema_which_should_validate_request_body.md | 2 +- ..._additionalproperties_are_allowed_by_default_request_body.md | 2 +- ...ost_additionalproperties_can_exist_by_itself_request_body.md | 2 +- ...nalproperties_should_not_look_in_applicators_request_body.md | 2 +- .../post_allof_combined_with_anyof_oneof_request_body.md | 2 +- .../python/docs/apis/tags/all_of_api/post_allof_request_body.md | 2 +- .../tags/all_of_api/post_allof_simple_types_request_body.md | 2 +- .../tags/all_of_api/post_allof_with_base_schema_request_body.md | 2 +- .../all_of_api/post_allof_with_one_empty_schema_request_body.md | 2 +- .../post_allof_with_the_first_empty_schema_request_body.md | 2 +- .../post_allof_with_the_last_empty_schema_request_body.md | 2 +- .../post_allof_with_two_empty_schemas_request_body.md | 2 +- ...t_nested_allof_to_check_validation_semantics_request_body.md | 2 +- .../tags/any_of_api/post_anyof_complex_types_request_body.md | 2 +- .../python/docs/apis/tags/any_of_api/post_anyof_request_body.md | 2 +- .../tags/any_of_api/post_anyof_with_base_schema_request_body.md | 2 +- .../any_of_api/post_anyof_with_one_empty_schema_request_body.md | 2 +- ...t_nested_anyof_to_check_validation_semantics_request_body.md | 2 +- ...erties_allows_a_schema_which_should_validate_request_body.md | 2 +- ..._additionalproperties_are_allowed_by_default_request_body.md | 2 +- ...ost_additionalproperties_can_exist_by_itself_request_body.md | 2 +- ...nalproperties_should_not_look_in_applicators_request_body.md | 2 +- .../post_allof_combined_with_anyof_oneof_request_body.md | 2 +- .../apis/tags/content_type_json_api/post_allof_request_body.md | 2 +- .../post_allof_simple_types_request_body.md | 2 +- .../post_allof_with_base_schema_request_body.md | 2 +- .../post_allof_with_one_empty_schema_request_body.md | 2 +- .../post_allof_with_the_first_empty_schema_request_body.md | 2 +- .../post_allof_with_the_last_empty_schema_request_body.md | 2 +- .../post_allof_with_two_empty_schemas_request_body.md | 2 +- .../post_anyof_complex_types_request_body.md | 2 +- .../apis/tags/content_type_json_api/post_anyof_request_body.md | 2 +- .../post_anyof_with_base_schema_request_body.md | 2 +- .../post_anyof_with_one_empty_schema_request_body.md | 2 +- .../post_array_type_matches_arrays_request_body.md | 2 +- .../post_boolean_type_matches_booleans_request_body.md | 2 +- .../apis/tags/content_type_json_api/post_by_int_request_body.md | 2 +- .../tags/content_type_json_api/post_by_number_request_body.md | 2 +- .../content_type_json_api/post_by_small_number_request_body.md | 2 +- .../content_type_json_api/post_date_time_format_request_body.md | 2 +- .../content_type_json_api/post_email_format_request_body.md | 2 +- .../post_enum_with0_does_not_match_false_request_body.md | 2 +- .../post_enum_with1_does_not_match_true_request_body.md | 2 +- .../post_enum_with_escaped_characters_request_body.md | 2 +- .../post_enum_with_false_does_not_match0_request_body.md | 2 +- .../post_enum_with_true_does_not_match1_request_body.md | 2 +- .../post_enums_in_properties_request_body.md | 2 +- .../post_forbidden_property_request_body.md | 2 +- .../content_type_json_api/post_hostname_format_request_body.md | 2 +- .../post_integer_type_matches_integers_request_body.md | 2 +- ...ould_not_raise_error_when_float_division_inf_request_body.md | 2 +- .../post_invalid_string_value_for_default_request_body.md | 2 +- .../tags/content_type_json_api/post_ipv4_format_request_body.md | 2 +- .../tags/content_type_json_api/post_ipv6_format_request_body.md | 2 +- .../post_json_pointer_format_request_body.md | 2 +- .../post_maximum_validation_request_body.md | 2 +- ...ost_maximum_validation_with_unsigned_integer_request_body.md | 2 +- .../post_maxitems_validation_request_body.md | 2 +- .../post_maxlength_validation_request_body.md | 2 +- ...ost_maxproperties0_means_the_object_is_empty_request_body.md | 2 +- .../post_maxproperties_validation_request_body.md | 2 +- .../post_minimum_validation_request_body.md | 2 +- .../post_minimum_validation_with_signed_integer_request_body.md | 2 +- .../post_minitems_validation_request_body.md | 2 +- .../post_minlength_validation_request_body.md | 2 +- .../post_minproperties_validation_request_body.md | 2 +- ...t_nested_allof_to_check_validation_semantics_request_body.md | 2 +- ...t_nested_anyof_to_check_validation_semantics_request_body.md | 2 +- .../content_type_json_api/post_nested_items_request_body.md | 2 +- ...t_nested_oneof_to_check_validation_semantics_request_body.md | 2 +- .../post_not_more_complex_schema_request_body.md | 2 +- .../apis/tags/content_type_json_api/post_not_request_body.md | 2 +- .../post_nul_characters_in_strings_request_body.md | 2 +- .../post_null_type_matches_only_the_null_object_request_body.md | 2 +- .../post_number_type_matches_numbers_request_body.md | 2 +- .../post_object_properties_validation_request_body.md | 2 +- .../post_object_type_matches_objects_request_body.md | 2 +- .../post_oneof_complex_types_request_body.md | 2 +- .../apis/tags/content_type_json_api/post_oneof_request_body.md | 2 +- .../post_oneof_with_base_schema_request_body.md | 2 +- .../post_oneof_with_empty_schema_request_body.md | 2 +- .../post_oneof_with_required_request_body.md | 2 +- .../post_pattern_is_not_anchored_request_body.md | 2 +- .../post_pattern_validation_request_body.md | 2 +- .../post_properties_with_escaped_characters_request_body.md | 2 +- ...t_property_named_ref_that_is_not_a_reference_request_body.md | 2 +- .../post_ref_in_additionalproperties_request_body.md | 2 +- .../content_type_json_api/post_ref_in_allof_request_body.md | 2 +- .../content_type_json_api/post_ref_in_anyof_request_body.md | 2 +- .../content_type_json_api/post_ref_in_items_request_body.md | 2 +- .../tags/content_type_json_api/post_ref_in_not_request_body.md | 2 +- .../content_type_json_api/post_ref_in_oneof_request_body.md | 2 +- .../content_type_json_api/post_ref_in_property_request_body.md | 2 +- .../post_required_default_validation_request_body.md | 2 +- .../post_required_validation_request_body.md | 2 +- .../post_required_with_empty_array_request_body.md | 2 +- .../post_required_with_escaped_characters_request_body.md | 2 +- .../post_simple_enum_validation_request_body.md | 2 +- .../post_string_type_matches_strings_request_body.md | 2 +- ...s_not_do_anything_if_the_property_is_missing_request_body.md | 2 +- .../post_uniqueitems_false_validation_request_body.md | 2 +- .../post_uniqueitems_validation_request_body.md | 2 +- .../tags/content_type_json_api/post_uri_format_request_body.md | 2 +- .../post_uri_reference_format_request_body.md | 2 +- .../post_uri_template_format_request_body.md | 2 +- .../post_invalid_string_value_for_default_request_body.md | 2 +- ...s_not_do_anything_if_the_property_is_missing_request_body.md | 2 +- .../post_enum_with0_does_not_match_false_request_body.md | 2 +- .../post_enum_with1_does_not_match_true_request_body.md | 2 +- .../enum_api/post_enum_with_escaped_characters_request_body.md | 2 +- .../post_enum_with_false_does_not_match0_request_body.md | 2 +- .../post_enum_with_true_does_not_match1_request_body.md | 2 +- .../apis/tags/enum_api/post_enums_in_properties_request_body.md | 2 +- .../enum_api/post_nul_characters_in_strings_request_body.md | 2 +- .../tags/enum_api/post_simple_enum_validation_request_body.md | 2 +- .../apis/tags/format_api/post_date_time_format_request_body.md | 2 +- .../docs/apis/tags/format_api/post_email_format_request_body.md | 2 +- .../apis/tags/format_api/post_hostname_format_request_body.md | 2 +- .../docs/apis/tags/format_api/post_ipv4_format_request_body.md | 2 +- .../docs/apis/tags/format_api/post_ipv6_format_request_body.md | 2 +- .../tags/format_api/post_json_pointer_format_request_body.md | 2 +- .../docs/apis/tags/format_api/post_uri_format_request_body.md | 2 +- .../tags/format_api/post_uri_reference_format_request_body.md | 2 +- .../tags/format_api/post_uri_template_format_request_body.md | 2 +- .../docs/apis/tags/items_api/post_nested_items_request_body.md | 2 +- .../tags/max_items_api/post_maxitems_validation_request_body.md | 2 +- .../max_length_api/post_maxlength_validation_request_body.md | 2 +- ...ost_maxproperties0_means_the_object_is_empty_request_body.md | 2 +- .../post_maxproperties_validation_request_body.md | 2 +- .../tags/maximum_api/post_maximum_validation_request_body.md | 2 +- ...ost_maximum_validation_with_unsigned_integer_request_body.md | 2 +- .../tags/min_items_api/post_minitems_validation_request_body.md | 2 +- .../min_length_api/post_minlength_validation_request_body.md | 2 +- .../post_minproperties_validation_request_body.md | 2 +- .../tags/minimum_api/post_minimum_validation_request_body.md | 2 +- .../post_minimum_validation_with_signed_integer_request_body.md | 2 +- .../tags/model_not_api/post_forbidden_property_request_body.md | 2 +- .../model_not_api/post_not_more_complex_schema_request_body.md | 2 +- .../docs/apis/tags/model_not_api/post_not_request_body.md | 2 +- .../docs/apis/tags/multiple_of_api/post_by_int_request_body.md | 2 +- .../apis/tags/multiple_of_api/post_by_number_request_body.md | 2 +- .../tags/multiple_of_api/post_by_small_number_request_body.md | 2 +- ...ould_not_raise_error_when_float_division_inf_request_body.md | 2 +- ...t_nested_oneof_to_check_validation_semantics_request_body.md | 2 +- .../tags/one_of_api/post_oneof_complex_types_request_body.md | 2 +- .../python/docs/apis/tags/one_of_api/post_oneof_request_body.md | 2 +- .../tags/one_of_api/post_oneof_with_base_schema_request_body.md | 2 +- .../one_of_api/post_oneof_with_empty_schema_request_body.md | 2 +- .../tags/one_of_api/post_oneof_with_required_request_body.md | 2 +- ...erties_allows_a_schema_which_should_validate_request_body.md | 2 +- ..._additionalproperties_are_allowed_by_default_request_body.md | 2 +- ...ost_additionalproperties_can_exist_by_itself_request_body.md | 2 +- ...nalproperties_should_not_look_in_applicators_request_body.md | 2 +- .../post_allof_combined_with_anyof_oneof_request_body.md | 2 +- .../tags/operation_request_body_api/post_allof_request_body.md | 2 +- .../post_allof_simple_types_request_body.md | 2 +- .../post_allof_with_base_schema_request_body.md | 2 +- .../post_allof_with_one_empty_schema_request_body.md | 2 +- .../post_allof_with_the_first_empty_schema_request_body.md | 2 +- .../post_allof_with_the_last_empty_schema_request_body.md | 2 +- .../post_allof_with_two_empty_schemas_request_body.md | 2 +- .../post_anyof_complex_types_request_body.md | 2 +- .../tags/operation_request_body_api/post_anyof_request_body.md | 2 +- .../post_anyof_with_base_schema_request_body.md | 2 +- .../post_anyof_with_one_empty_schema_request_body.md | 2 +- .../post_array_type_matches_arrays_request_body.md | 2 +- .../post_boolean_type_matches_booleans_request_body.md | 2 +- .../tags/operation_request_body_api/post_by_int_request_body.md | 2 +- .../operation_request_body_api/post_by_number_request_body.md | 2 +- .../post_by_small_number_request_body.md | 2 +- .../post_date_time_format_request_body.md | 2 +- .../post_email_format_request_body.md | 2 +- .../post_enum_with0_does_not_match_false_request_body.md | 2 +- .../post_enum_with1_does_not_match_true_request_body.md | 2 +- .../post_enum_with_escaped_characters_request_body.md | 2 +- .../post_enum_with_false_does_not_match0_request_body.md | 2 +- .../post_enum_with_true_does_not_match1_request_body.md | 2 +- .../post_enums_in_properties_request_body.md | 2 +- .../post_forbidden_property_request_body.md | 2 +- .../post_hostname_format_request_body.md | 2 +- .../post_integer_type_matches_integers_request_body.md | 2 +- ...ould_not_raise_error_when_float_division_inf_request_body.md | 2 +- .../post_invalid_string_value_for_default_request_body.md | 2 +- .../operation_request_body_api/post_ipv4_format_request_body.md | 2 +- .../operation_request_body_api/post_ipv6_format_request_body.md | 2 +- .../post_json_pointer_format_request_body.md | 2 +- .../post_maximum_validation_request_body.md | 2 +- ...ost_maximum_validation_with_unsigned_integer_request_body.md | 2 +- .../post_maxitems_validation_request_body.md | 2 +- .../post_maxlength_validation_request_body.md | 2 +- ...ost_maxproperties0_means_the_object_is_empty_request_body.md | 2 +- .../post_maxproperties_validation_request_body.md | 2 +- .../post_minimum_validation_request_body.md | 2 +- .../post_minimum_validation_with_signed_integer_request_body.md | 2 +- .../post_minitems_validation_request_body.md | 2 +- .../post_minlength_validation_request_body.md | 2 +- .../post_minproperties_validation_request_body.md | 2 +- ...t_nested_allof_to_check_validation_semantics_request_body.md | 2 +- ...t_nested_anyof_to_check_validation_semantics_request_body.md | 2 +- .../post_nested_items_request_body.md | 2 +- ...t_nested_oneof_to_check_validation_semantics_request_body.md | 2 +- .../post_not_more_complex_schema_request_body.md | 2 +- .../tags/operation_request_body_api/post_not_request_body.md | 2 +- .../post_nul_characters_in_strings_request_body.md | 2 +- .../post_null_type_matches_only_the_null_object_request_body.md | 2 +- .../post_number_type_matches_numbers_request_body.md | 2 +- .../post_object_properties_validation_request_body.md | 2 +- .../post_object_type_matches_objects_request_body.md | 2 +- .../post_oneof_complex_types_request_body.md | 2 +- .../tags/operation_request_body_api/post_oneof_request_body.md | 2 +- .../post_oneof_with_base_schema_request_body.md | 2 +- .../post_oneof_with_empty_schema_request_body.md | 2 +- .../post_oneof_with_required_request_body.md | 2 +- .../post_pattern_is_not_anchored_request_body.md | 2 +- .../post_pattern_validation_request_body.md | 2 +- .../post_properties_with_escaped_characters_request_body.md | 2 +- ...t_property_named_ref_that_is_not_a_reference_request_body.md | 2 +- .../post_ref_in_additionalproperties_request_body.md | 2 +- .../post_ref_in_allof_request_body.md | 2 +- .../post_ref_in_anyof_request_body.md | 2 +- .../post_ref_in_items_request_body.md | 2 +- .../operation_request_body_api/post_ref_in_not_request_body.md | 2 +- .../post_ref_in_oneof_request_body.md | 2 +- .../post_ref_in_property_request_body.md | 2 +- .../post_required_default_validation_request_body.md | 2 +- .../post_required_validation_request_body.md | 2 +- .../post_required_with_empty_array_request_body.md | 2 +- .../post_required_with_escaped_characters_request_body.md | 2 +- .../post_simple_enum_validation_request_body.md | 2 +- .../post_string_type_matches_strings_request_body.md | 2 +- ...s_not_do_anything_if_the_property_is_missing_request_body.md | 2 +- .../post_uniqueitems_false_validation_request_body.md | 2 +- .../post_uniqueitems_validation_request_body.md | 2 +- .../operation_request_body_api/post_uri_format_request_body.md | 2 +- .../post_uri_reference_format_request_body.md | 2 +- .../post_uri_template_format_request_body.md | 2 +- ...erties_allows_a_schema_which_should_validate_request_body.md | 2 +- ..._additionalproperties_are_allowed_by_default_request_body.md | 2 +- ...ost_additionalproperties_can_exist_by_itself_request_body.md | 2 +- ...nalproperties_should_not_look_in_applicators_request_body.md | 2 +- .../post_allof_combined_with_anyof_oneof_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_allof_request_body.md | 2 +- .../tags/path_post_api/post_allof_simple_types_request_body.md | 2 +- .../path_post_api/post_allof_with_base_schema_request_body.md | 2 +- .../post_allof_with_one_empty_schema_request_body.md | 2 +- .../post_allof_with_the_first_empty_schema_request_body.md | 2 +- .../post_allof_with_the_last_empty_schema_request_body.md | 2 +- .../post_allof_with_two_empty_schemas_request_body.md | 2 +- .../tags/path_post_api/post_anyof_complex_types_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_anyof_request_body.md | 2 +- .../path_post_api/post_anyof_with_base_schema_request_body.md | 2 +- .../post_anyof_with_one_empty_schema_request_body.md | 2 +- .../post_array_type_matches_arrays_request_body.md | 2 +- .../post_boolean_type_matches_booleans_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_by_int_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_by_number_request_body.md | 2 +- .../tags/path_post_api/post_by_small_number_request_body.md | 2 +- .../tags/path_post_api/post_date_time_format_request_body.md | 2 +- .../apis/tags/path_post_api/post_email_format_request_body.md | 2 +- .../post_enum_with0_does_not_match_false_request_body.md | 2 +- .../post_enum_with1_does_not_match_true_request_body.md | 2 +- .../post_enum_with_escaped_characters_request_body.md | 2 +- .../post_enum_with_false_does_not_match0_request_body.md | 2 +- .../post_enum_with_true_does_not_match1_request_body.md | 2 +- .../tags/path_post_api/post_enums_in_properties_request_body.md | 2 +- .../tags/path_post_api/post_forbidden_property_request_body.md | 2 +- .../tags/path_post_api/post_hostname_format_request_body.md | 2 +- .../post_integer_type_matches_integers_request_body.md | 2 +- ...ould_not_raise_error_when_float_division_inf_request_body.md | 2 +- .../post_invalid_string_value_for_default_request_body.md | 2 +- .../apis/tags/path_post_api/post_ipv4_format_request_body.md | 2 +- .../apis/tags/path_post_api/post_ipv6_format_request_body.md | 2 +- .../tags/path_post_api/post_json_pointer_format_request_body.md | 2 +- .../tags/path_post_api/post_maximum_validation_request_body.md | 2 +- ...ost_maximum_validation_with_unsigned_integer_request_body.md | 2 +- .../tags/path_post_api/post_maxitems_validation_request_body.md | 2 +- .../path_post_api/post_maxlength_validation_request_body.md | 2 +- ...ost_maxproperties0_means_the_object_is_empty_request_body.md | 2 +- .../path_post_api/post_maxproperties_validation_request_body.md | 2 +- .../tags/path_post_api/post_minimum_validation_request_body.md | 2 +- .../post_minimum_validation_with_signed_integer_request_body.md | 2 +- .../tags/path_post_api/post_minitems_validation_request_body.md | 2 +- .../path_post_api/post_minlength_validation_request_body.md | 2 +- .../path_post_api/post_minproperties_validation_request_body.md | 2 +- ...t_nested_allof_to_check_validation_semantics_request_body.md | 2 +- ...t_nested_anyof_to_check_validation_semantics_request_body.md | 2 +- .../apis/tags/path_post_api/post_nested_items_request_body.md | 2 +- ...t_nested_oneof_to_check_validation_semantics_request_body.md | 2 +- .../path_post_api/post_not_more_complex_schema_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_not_request_body.md | 2 +- .../post_nul_characters_in_strings_request_body.md | 2 +- .../post_null_type_matches_only_the_null_object_request_body.md | 2 +- .../post_number_type_matches_numbers_request_body.md | 2 +- .../post_object_properties_validation_request_body.md | 2 +- .../post_object_type_matches_objects_request_body.md | 2 +- .../tags/path_post_api/post_oneof_complex_types_request_body.md | 2 +- .../docs/apis/tags/path_post_api/post_oneof_request_body.md | 2 +- .../path_post_api/post_oneof_with_base_schema_request_body.md | 2 +- .../path_post_api/post_oneof_with_empty_schema_request_body.md | 2 +- .../tags/path_post_api/post_oneof_with_required_request_body.md | 2 +- .../path_post_api/post_pattern_is_not_anchored_request_body.md | 2 +- .../tags/path_post_api/post_pattern_validation_request_body.md | 2 +- .../post_properties_with_escaped_characters_request_body.md | 2 +- ...t_property_named_ref_that_is_not_a_reference_request_body.md | 2 +- .../post_ref_in_additionalproperties_request_body.md | 2 +- .../apis/tags/path_post_api/post_ref_in_allof_request_body.md | 2 +- .../apis/tags/path_post_api/post_ref_in_anyof_request_body.md | 2 +- .../apis/tags/path_post_api/post_ref_in_items_request_body.md | 2 +- .../apis/tags/path_post_api/post_ref_in_not_request_body.md | 2 +- .../apis/tags/path_post_api/post_ref_in_oneof_request_body.md | 2 +- .../tags/path_post_api/post_ref_in_property_request_body.md | 2 +- .../post_required_default_validation_request_body.md | 2 +- .../tags/path_post_api/post_required_validation_request_body.md | 2 +- .../post_required_with_empty_array_request_body.md | 2 +- .../post_required_with_escaped_characters_request_body.md | 2 +- .../path_post_api/post_simple_enum_validation_request_body.md | 2 +- .../post_string_type_matches_strings_request_body.md | 2 +- ...s_not_do_anything_if_the_property_is_missing_request_body.md | 2 +- .../post_uniqueitems_false_validation_request_body.md | 2 +- .../path_post_api/post_uniqueitems_validation_request_body.md | 2 +- .../apis/tags/path_post_api/post_uri_format_request_body.md | 2 +- .../path_post_api/post_uri_reference_format_request_body.md | 2 +- .../tags/path_post_api/post_uri_template_format_request_body.md | 2 +- .../pattern_api/post_pattern_is_not_anchored_request_body.md | 2 +- .../tags/pattern_api/post_pattern_validation_request_body.md | 2 +- .../post_object_properties_validation_request_body.md | 2 +- .../post_properties_with_escaped_characters_request_body.md | 2 +- ...t_property_named_ref_that_is_not_a_reference_request_body.md | 2 +- .../ref_api/post_ref_in_additionalproperties_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_allof_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_items_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_not_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md | 2 +- .../docs/apis/tags/ref_api/post_ref_in_property_request_body.md | 2 +- .../post_required_default_validation_request_body.md | 2 +- .../tags/required_api/post_required_validation_request_body.md | 2 +- .../required_api/post_required_with_empty_array_request_body.md | 2 +- .../post_required_with_escaped_characters_request_body.md | 2 +- .../type_api/post_array_type_matches_arrays_request_body.md | 2 +- .../type_api/post_boolean_type_matches_booleans_request_body.md | 2 +- .../type_api/post_integer_type_matches_integers_request_body.md | 2 +- .../post_null_type_matches_only_the_null_object_request_body.md | 2 +- .../type_api/post_number_type_matches_numbers_request_body.md | 2 +- .../type_api/post_object_type_matches_objects_request_body.md | 2 +- .../type_api/post_string_type_matches_strings_request_body.md | 2 +- .../post_uniqueitems_false_validation_request_body.md | 2 +- .../post_uniqueitems_validation_request_body.md | 2 +- .../python/docs/apis/tags/default_api/post_operators.md | 2 +- .../openapi3/client/petstore/python/.openapi-generator/VERSION | 2 +- 350 files changed, 350 insertions(+), 350 deletions(-) diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index b34c88d6294..e7cfd227b4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md index 342705afc62..19c1eac61e9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md index 80620509d5d..7becfbc690b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index e0264c739cb..3fe1434c36c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/additional_properties_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md index 0d9e21de9fd..c2292b0dfd5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md index 6563ec383a5..ac4e16dea83 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](../../components/schema/allof.Allof.md) | | +[**Allof**](../../../components/schema/allof.Allof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md index 1ac0c83b174..13d7f4d83bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_simple_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md index 05b8fb1fc0e..43e14aa9980 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md index 4fb728429e8..74614c77e14 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md index a13d5c6f0a3..814980b8d2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_first_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md index 49383d77da3..a04598f1adc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_the_last_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md index 0e82099c23d..993093bca36 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_allof_with_two_empty_schemas_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md index 2cde9cebece..5717f31cf32 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/all_of_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md index 046316b6b52..37974546013 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md index db201b416b7..e1ef27bac0f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](../../components/schema/anyof.Anyof.md) | | +[**Anyof**](../../../components/schema/anyof.Anyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md index 514ce47f326..a7ad20fe439 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md index 791be7c2eaa..af9df1f484b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_anyof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md index 4b38d8575d4..91085181476 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/any_of_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index 42d9cacd7e8..240c6b163b4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md index 613d88d4be6..d2ab964d541 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md index d99f45b086d..8fa4f7006b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index 38f209b25ca..57490491e48 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md index 8bda26fa9e8..ff6df3c6f7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md index 23ff76e6d94..464bc1d5bcb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](../../components/schema/allof.Allof.md) | | +[**Allof**](../../../components/schema/allof.Allof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md index f6ed8390a48..d45c75b1f67 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_simple_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md index 46af7d8cf0c..a4c27ea1a02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md index be3a2613eae..3baea30a52d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md index 25b882a9c80..386b12b1c5e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_first_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md index 28d3b9d8b3c..9d78d52d8bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_the_last_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md index a27784af855..7593d3a73df 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_allof_with_two_empty_schemas_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md index d88153a02ee..20d9e7dc8d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md index 5a1df98c46d..af13931027e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](../../components/schema/anyof.Anyof.md) | | +[**Anyof**](../../../components/schema/anyof.Anyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md index c0d3027d597..31691263ab1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md index 43783a5b848..9d3e478c41b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_anyof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md index d9c1266f584..5b7c4c3c32f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_array_type_matches_arrays_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md index 4a71843a491..56ff9047085 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_boolean_type_matches_booleans_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BooleanTypeMatchesBooleans**](../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | +[**BooleanTypeMatchesBooleans**](../../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md index 72f18ce3835..4c935b0c7e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_int_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](../../components/schema/by_int.ByInt.md) | | +[**ByInt**](../../../components/schema/by_int.ByInt.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md index 086aadea09f..238422abb26 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](../../components/schema/by_number.ByNumber.md) | | +[**ByNumber**](../../../components/schema/by_number.ByNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md index 536466277dc..7f7d56f260f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_by_small_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](../../components/schema/by_small_number.BySmallNumber.md) | | +[**BySmallNumber**](../../../components/schema/by_small_number.BySmallNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md index c8430984712..df4fe49e1a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_date_time_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**DateTimeFormat**](../../components/schema/date_time_format.DateTimeFormat.md) | | +[**DateTimeFormat**](../../../components/schema/date_time_format.DateTimeFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md index cef175fb1ee..5abecc6a3f2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_email_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EmailFormat**](../../components/schema/email_format.EmailFormat.md) | | +[**EmailFormat**](../../../components/schema/email_format.EmailFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md index c2b7e067f79..f869e76205b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with0_does_not_match_false_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md index a73f3f5f1f5..1e2f33a0307 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with1_does_not_match_true_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md index b748bbe1f73..06246336538 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md index 6d377b16504..881d4ea7fe4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_false_does_not_match0_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md index 8086faf6069..5919f249f5e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enum_with_true_does_not_match1_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md index 70e492e27da..2919b34e1e6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_enums_in_properties_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](../../components/schema/enums_in_properties.EnumsInProperties.md) | | +[**EnumsInProperties**](../../../components/schema/enums_in_properties.EnumsInProperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md index 653ef641ad8..7db242e6436 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_forbidden_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](../../components/schema/forbidden_property.ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../../components/schema/forbidden_property.ForbiddenProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md index e1219c589f1..6d443edbf7f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_hostname_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**HostnameFormat**](../../components/schema/hostname_format.HostnameFormat.md) | | +[**HostnameFormat**](../../../components/schema/hostname_format.HostnameFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md index cedab122b42..6f03357bff4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_integer_type_matches_integers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**IntegerTypeMatchesIntegers**](../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | +[**IntegerTypeMatchesIntegers**](../../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index a6fc8bddaf4..d8265d96c96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md index 59cb0da8eb4..99350b6bb22 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_invalid_string_value_for_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md index 2e7f1ec88c0..cc29ed3e3bc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv4_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv4Format**](../../components/schema/ipv4_format.Ipv4Format.md) | | +[**Ipv4Format**](../../../components/schema/ipv4_format.Ipv4Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md index c7a32bc6878..111b4c21f93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ipv6_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv6Format**](../../components/schema/ipv6_format.Ipv6Format.md) | | +[**Ipv6Format**](../../../components/schema/ipv6_format.Ipv6Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md index 2eb898638db..61284acdc6c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_json_pointer_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**JsonPointerFormat**](../../components/schema/json_pointer_format.JsonPointerFormat.md) | | +[**JsonPointerFormat**](../../../components/schema/json_pointer_format.JsonPointerFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md index 532d127d2ff..08e6ca01e27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](../../components/schema/maximum_validation.MaximumValidation.md) | | +[**MaximumValidation**](../../../components/schema/maximum_validation.MaximumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md index 11a308c6992..1d6ce2760ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md index f2b324667d8..0bfc3049c5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](../../components/schema/maxitems_validation.MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../../components/schema/maxitems_validation.MaxitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md index 0b072abbfff..81537db848b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](../../components/schema/maxlength_validation.MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../../components/schema/maxlength_validation.MaxlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md index f27198aba99..d355f6d6c8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md index 4a0d225a93d..bdac31ae4f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_maxproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md index 8dbd66b1071..24c80099e97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](../../components/schema/minimum_validation.MinimumValidation.md) | | +[**MinimumValidation**](../../../components/schema/minimum_validation.MinimumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md index 34d8c4e0774..0185818df21 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minimum_validation_with_signed_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md index 949fdf2e3ee..2269472cc72 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](../../components/schema/minitems_validation.MinitemsValidation.md) | | +[**MinitemsValidation**](../../../components/schema/minitems_validation.MinitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md index 7274dede238..52bcc871da8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](../../components/schema/minlength_validation.MinlengthValidation.md) | | +[**MinlengthValidation**](../../../components/schema/minlength_validation.MinlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md index cde30ecddee..3533b6e47e2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_minproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md index 65895093ade..af0da6abbbc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md index 1c3883eca80..f6e72517661 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md index ba5608679a7..2ea6c3fb9bb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_items_request_body.md @@ -52,7 +52,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](../../components/schema/nested_items.NestedItems.md) | | +[**NestedItems**](../../../components/schema/nested_items.NestedItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md index 25161864548..8982bfe9695 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md index c61b1f8ad03..e97bc4954fd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_more_complex_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NotMoreComplexSchema**](../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | +[**NotMoreComplexSchema**](../../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md index 19467e99992..4fa063b0335 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ModelNot**](../../components/schema/model_not.ModelNot.md) | | +[**ModelNot**](../../../components/schema/model_not.ModelNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md index 51b18267c49..a7338d6cc7a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_nul_characters_in_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md index 5d8b9ff2747..71378853756 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_null_type_matches_only_the_null_object_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NullTypeMatchesOnlyTheNullObject**](../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | +[**NullTypeMatchesOnlyTheNullObject**](../../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md index 7b8e4e2b514..89d8abac5ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_number_type_matches_numbers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NumberTypeMatchesNumbers**](../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | +[**NumberTypeMatchesNumbers**](../../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md index 2a1f7289baf..2ce93b38d27 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_properties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md index e7cda0eac50..f67df5fd6c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_object_type_matches_objects_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectTypeMatchesObjects**](../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | +[**ObjectTypeMatchesObjects**](../../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md index 56299b82d97..c439c65805a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md index 6dc699e0a83..045a7e3e15d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](../../components/schema/oneof.Oneof.md) | | +[**Oneof**](../../../components/schema/oneof.Oneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md index 6c55e5fe950..619693890e8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md index 047a8c007c2..65c1c13953a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md index 879650b99e4..e8d0258dfc5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_oneof_with_required_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](../../components/schema/oneof_with_required.OneofWithRequired.md) | | +[**OneofWithRequired**](../../../components/schema/oneof_with_required.OneofWithRequired.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md index 9b69f460462..d467dc27e09 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_is_not_anchored_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md index 91887888ed1..d189a4543dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_pattern_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](../../components/schema/pattern_validation.PatternValidation.md) | | +[**PatternValidation**](../../../components/schema/pattern_validation.PatternValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md index 2982a1cc332..47ec41c7416 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_properties_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md index 30c3c3e36ed..8868473b750 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md index a1411a92040..55eda3e26b1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_additionalproperties_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md index 42c800cc848..6b44dbab31a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](../../components/schema/ref_in_allof.RefInAllof.md) | | +[**RefInAllof**](../../../components/schema/ref_in_allof.RefInAllof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md index 1ce81a549b2..ecfc8ff0590 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](../../components/schema/ref_in_anyof.RefInAnyof.md) | | +[**RefInAnyof**](../../../components/schema/ref_in_anyof.RefInAnyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md index 0aa22128028..dea38449270 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_items_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](../../components/schema/ref_in_items.RefInItems.md) | | +[**RefInItems**](../../../components/schema/ref_in_items.RefInItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md index a2ee9c36b78..99ae54866c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInNot**](../../components/schema/ref_in_not.RefInNot.md) | | +[**RefInNot**](../../../components/schema/ref_in_not.RefInNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md index 9aa956ffceb..ae05a78d9b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](../../components/schema/ref_in_oneof.RefInOneof.md) | | +[**RefInOneof**](../../../components/schema/ref_in_oneof.RefInOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md index 7c5f569bc06..f9580860c4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_ref_in_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](../../components/schema/ref_in_property.RefInProperty.md) | | +[**RefInProperty**](../../../components/schema/ref_in_property.RefInProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md index a3d32fb77d2..420d10f5161 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_default_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md index a0254569d3a..979a368e268 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](../../components/schema/required_validation.RequiredValidation.md) | | +[**RequiredValidation**](../../../components/schema/required_validation.RequiredValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md index 364d9ef77ae..ab04b7cd325 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_empty_array_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md index 259161847b5..ed121bcea86 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_required_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEscapedCharacters**](../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | +[**RequiredWithEscapedCharacters**](../../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md index 93e4c0d201e..ef67161f75b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_simple_enum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md index 7a6f823b090..72d0dbaeb32 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_string_type_matches_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**StringTypeMatchesStrings**](../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | +[**StringTypeMatchesStrings**](../../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index 68249f77456..20a6e9dd15b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md index 621c211146e..82afb894962 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_false_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md index 3dd8c6b6fe8..912c1ea94b0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uniqueitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md index df7580fae12..28a5ba7f617 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriFormat**](../../components/schema/uri_format.UriFormat.md) | | +[**UriFormat**](../../../components/schema/uri_format.UriFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md index d93bf83fd11..db7b43f22f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_reference_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriReferenceFormat**](../../components/schema/uri_reference_format.UriReferenceFormat.md) | | +[**UriReferenceFormat**](../../../components/schema/uri_reference_format.UriReferenceFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md index de93abb3f3e..13fd57c2832 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/content_type_json_api/post_uri_template_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriTemplateFormat**](../../components/schema/uri_template_format.UriTemplateFormat.md) | | +[**UriTemplateFormat**](../../../components/schema/uri_template_format.UriTemplateFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md index c220a9b8ca0..5db7d47aeba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_invalid_string_value_for_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index a3c88f4ab22..4444e26b6d8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/default_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md index 3534a24458b..a5228cd7d72 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with0_does_not_match_false_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md index 16dbb6130d4..028678ab420 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with1_does_not_match_true_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md index 35d1a4e1728..76d7d9325e0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md index fd1df4229f2..95b2787dc1c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_false_does_not_match0_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md index ed1e72a05c8..ddf564d0b01 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enum_with_true_does_not_match1_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md index 96a67cd3055..d5c1f8e5338 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_enums_in_properties_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](../../components/schema/enums_in_properties.EnumsInProperties.md) | | +[**EnumsInProperties**](../../../components/schema/enums_in_properties.EnumsInProperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md index ba9d42bb9ad..a8250102ea8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_nul_characters_in_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md index b38d6fd6d40..263641a3e93 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/enum_api/post_simple_enum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md index 2edf859ac61..29a490274d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_date_time_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**DateTimeFormat**](../../components/schema/date_time_format.DateTimeFormat.md) | | +[**DateTimeFormat**](../../../components/schema/date_time_format.DateTimeFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md index 1c92deda46b..2a72a7044db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_email_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EmailFormat**](../../components/schema/email_format.EmailFormat.md) | | +[**EmailFormat**](../../../components/schema/email_format.EmailFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md index 42971593562..c64b8004826 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_hostname_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**HostnameFormat**](../../components/schema/hostname_format.HostnameFormat.md) | | +[**HostnameFormat**](../../../components/schema/hostname_format.HostnameFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md index 6401d6d6ce8..edd376a91c3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv4_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv4Format**](../../components/schema/ipv4_format.Ipv4Format.md) | | +[**Ipv4Format**](../../../components/schema/ipv4_format.Ipv4Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md index 4bccc951291..541926658aa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_ipv6_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv6Format**](../../components/schema/ipv6_format.Ipv6Format.md) | | +[**Ipv6Format**](../../../components/schema/ipv6_format.Ipv6Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md index 5ce1dbf7737..3df02407196 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_json_pointer_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**JsonPointerFormat**](../../components/schema/json_pointer_format.JsonPointerFormat.md) | | +[**JsonPointerFormat**](../../../components/schema/json_pointer_format.JsonPointerFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md index aa87327a00c..0767d45314b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriFormat**](../../components/schema/uri_format.UriFormat.md) | | +[**UriFormat**](../../../components/schema/uri_format.UriFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md index 9b62782a5c8..ca41a39ed46 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_reference_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriReferenceFormat**](../../components/schema/uri_reference_format.UriReferenceFormat.md) | | +[**UriReferenceFormat**](../../../components/schema/uri_reference_format.UriReferenceFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md index 364b157d252..9a8a4fa25ef 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/format_api/post_uri_template_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriTemplateFormat**](../../components/schema/uri_template_format.UriTemplateFormat.md) | | +[**UriTemplateFormat**](../../../components/schema/uri_template_format.UriTemplateFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md index d3d5672741a..4936bbaa585 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/items_api/post_nested_items_request_body.md @@ -52,7 +52,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](../../components/schema/nested_items.NestedItems.md) | | +[**NestedItems**](../../../components/schema/nested_items.NestedItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md index 874809c6117..be812cb6258 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_items_api/post_maxitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](../../components/schema/maxitems_validation.MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../../components/schema/maxitems_validation.MaxitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md index f830f22242e..d64fc696339 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_length_api/post_maxlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](../../components/schema/maxlength_validation.MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../../components/schema/maxlength_validation.MaxlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md index 7ac661151dc..af3dfa11544 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md index c7ca8da0d95..357c7ee2cfe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/max_properties_api/post_maxproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md index 916d4364a76..9cce5751ca2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](../../components/schema/maximum_validation.MaximumValidation.md) | | +[**MaximumValidation**](../../../components/schema/maximum_validation.MaximumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md index ec964a79b01..29984b0b644 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/maximum_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md index 98599689abd..68cfa2e5424 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_items_api/post_minitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](../../components/schema/minitems_validation.MinitemsValidation.md) | | +[**MinitemsValidation**](../../../components/schema/minitems_validation.MinitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md index 6be57fc610a..91a13221326 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_length_api/post_minlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](../../components/schema/minlength_validation.MinlengthValidation.md) | | +[**MinlengthValidation**](../../../components/schema/minlength_validation.MinlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md index 61f01ad4371..c8ed3e0ed28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/min_properties_api/post_minproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md index 839827a6372..5671953b573 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](../../components/schema/minimum_validation.MinimumValidation.md) | | +[**MinimumValidation**](../../../components/schema/minimum_validation.MinimumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md index 283ac9514f8..06a597d9956 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/minimum_api/post_minimum_validation_with_signed_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md index 5c93f502dc9..9a0944d2397 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_forbidden_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](../../components/schema/forbidden_property.ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../../components/schema/forbidden_property.ForbiddenProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md index e605ddc4269..946a09ac7bb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_more_complex_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NotMoreComplexSchema**](../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | +[**NotMoreComplexSchema**](../../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md index ebd8703beda..cfb65c7ffb9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/model_not_api/post_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ModelNot**](../../components/schema/model_not.ModelNot.md) | | +[**ModelNot**](../../../components/schema/model_not.ModelNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md index fe7fb296ddf..d0fe4a76c4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_int_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](../../components/schema/by_int.ByInt.md) | | +[**ByInt**](../../../components/schema/by_int.ByInt.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md index 523a69cf1a0..a1421cf369b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](../../components/schema/by_number.ByNumber.md) | | +[**ByNumber**](../../../components/schema/by_number.ByNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md index f8d9a50fe05..1063e0388e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_by_small_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](../../components/schema/by_small_number.BySmallNumber.md) | | +[**BySmallNumber**](../../../components/schema/by_small_number.BySmallNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index b7cf3113f37..f9161526318 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/multiple_of_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md index 5b63d54275a..3fe00070e02 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md index 8f9b87e0d70..8b321d59744 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md index b8a1973bf0b..103930f6c68 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](../../components/schema/oneof.Oneof.md) | | +[**Oneof**](../../../components/schema/oneof.Oneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md index 5950dfda25c..b7f9d70f42c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md index 045e09328eb..d4bed4a5526 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md index 8a34cfbccae..e45121b9feb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/one_of_api/post_oneof_with_required_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](../../components/schema/oneof_with_required.OneofWithRequired.md) | | +[**OneofWithRequired**](../../../components/schema/oneof_with_required.OneofWithRequired.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index 4741658f7c0..2d316443f6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md index d5a04c08d20..5a3ddad7839 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md index 900f7cdc1c1..655eda2fa8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index c656862f190..525641bc26c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md index 443aaa473a4..16b445aa3b5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md index d161be3fce2..a345e08c117 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](../../components/schema/allof.Allof.md) | | +[**Allof**](../../../components/schema/allof.Allof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md index a48ad332e15..6cc3a3e7c16 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_simple_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md index 126eb844f3f..248d10f4cd6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md index eb830d9a9c3..cb86e8661c6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md index 651f0903912..4f7534040ea 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_first_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md index 85e6109399d..fa734c3d279 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_the_last_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md index ef2fc331f4e..328501e3dd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_allof_with_two_empty_schemas_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md index 49a5cbadb93..723efaecb4b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md index 6cc77a80fda..81d1437eeb6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](../../components/schema/anyof.Anyof.md) | | +[**Anyof**](../../../components/schema/anyof.Anyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md index 5e721f8b993..3a9e1c019ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md index 7f721a30773..c8f4c95bab9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_anyof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md index b9fa4bae356..be0c9fb1ce1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_array_type_matches_arrays_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md index 485795c934a..bf19fc6f26b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_boolean_type_matches_booleans_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BooleanTypeMatchesBooleans**](../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | +[**BooleanTypeMatchesBooleans**](../../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md index 2ee7bb26cc3..b4b1b52b424 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_int_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](../../components/schema/by_int.ByInt.md) | | +[**ByInt**](../../../components/schema/by_int.ByInt.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md index 80e9090dac5..79d848e69ab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](../../components/schema/by_number.ByNumber.md) | | +[**ByNumber**](../../../components/schema/by_number.ByNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md index d39024bd052..a40d342fe73 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_by_small_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](../../components/schema/by_small_number.BySmallNumber.md) | | +[**BySmallNumber**](../../../components/schema/by_small_number.BySmallNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md index 31ac487cd0c..9928968cfaa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_date_time_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**DateTimeFormat**](../../components/schema/date_time_format.DateTimeFormat.md) | | +[**DateTimeFormat**](../../../components/schema/date_time_format.DateTimeFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md index c04c5385f36..32fb5f3204b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_email_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EmailFormat**](../../components/schema/email_format.EmailFormat.md) | | +[**EmailFormat**](../../../components/schema/email_format.EmailFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md index 8471611dd2e..a987f5120f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with0_does_not_match_false_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md index 2c8a5d97d50..979f1825855 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with1_does_not_match_true_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md index 43d20516eef..a19bbe1890b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md index 4e732b6f580..0b5785b5233 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_false_does_not_match0_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md index 0412874c292..1ab998d63ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enum_with_true_does_not_match1_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md index 145c46aea4f..8944cf263a8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_enums_in_properties_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](../../components/schema/enums_in_properties.EnumsInProperties.md) | | +[**EnumsInProperties**](../../../components/schema/enums_in_properties.EnumsInProperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md index d2a38aef430..72759a8bddb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_forbidden_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](../../components/schema/forbidden_property.ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../../components/schema/forbidden_property.ForbiddenProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md index 8edfbbe4bb9..5d233533438 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_hostname_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**HostnameFormat**](../../components/schema/hostname_format.HostnameFormat.md) | | +[**HostnameFormat**](../../../components/schema/hostname_format.HostnameFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md index daa7ef95051..cc235d393d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_integer_type_matches_integers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**IntegerTypeMatchesIntegers**](../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | +[**IntegerTypeMatchesIntegers**](../../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index 3c6f2c6fad3..b37c3120722 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md index bf0b389786a..38a25343897 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_invalid_string_value_for_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md index 29fba25aae6..2ecab3e09f7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv4_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv4Format**](../../components/schema/ipv4_format.Ipv4Format.md) | | +[**Ipv4Format**](../../../components/schema/ipv4_format.Ipv4Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md index e57a463a016..45fc790b19a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ipv6_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv6Format**](../../components/schema/ipv6_format.Ipv6Format.md) | | +[**Ipv6Format**](../../../components/schema/ipv6_format.Ipv6Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md index 32861406c5a..753c4622d46 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_json_pointer_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**JsonPointerFormat**](../../components/schema/json_pointer_format.JsonPointerFormat.md) | | +[**JsonPointerFormat**](../../../components/schema/json_pointer_format.JsonPointerFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md index 60dcf82efbd..4a6acb5a600 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](../../components/schema/maximum_validation.MaximumValidation.md) | | +[**MaximumValidation**](../../../components/schema/maximum_validation.MaximumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md index 000f73ca0ab..88e1492f367 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md index fc3a7eaa39b..ee3e3dcfe5e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](../../components/schema/maxitems_validation.MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../../components/schema/maxitems_validation.MaxitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md index d53c295df09..25499f46fc4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](../../components/schema/maxlength_validation.MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../../components/schema/maxlength_validation.MaxlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md index bfa646f38ed..b7700682a5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md index c0a0454a507..02ec80fb9d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_maxproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md index 046beddad97..909a4e77072 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](../../components/schema/minimum_validation.MinimumValidation.md) | | +[**MinimumValidation**](../../../components/schema/minimum_validation.MinimumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md index 2a6ab6de7e1..1f3ce5fff19 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minimum_validation_with_signed_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md index 032892e8097..96aff230f5b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](../../components/schema/minitems_validation.MinitemsValidation.md) | | +[**MinitemsValidation**](../../../components/schema/minitems_validation.MinitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md index 3c2b0f19b04..760b3ef3ae6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](../../components/schema/minlength_validation.MinlengthValidation.md) | | +[**MinlengthValidation**](../../../components/schema/minlength_validation.MinlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md index b2b72e4c4ea..aabd3eb2748 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_minproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md index c3b740e83cb..45f20ae1948 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md index 95a40af050b..67377d7763c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md index d2a0c241dbe..29d7c61ff8d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_items_request_body.md @@ -52,7 +52,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](../../components/schema/nested_items.NestedItems.md) | | +[**NestedItems**](../../../components/schema/nested_items.NestedItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md index c00800dec99..f5ac4789985 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md index c7590f094b2..0a36e89aaab 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_more_complex_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NotMoreComplexSchema**](../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | +[**NotMoreComplexSchema**](../../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md index e3e45ab6e36..c442fb55e2d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ModelNot**](../../components/schema/model_not.ModelNot.md) | | +[**ModelNot**](../../../components/schema/model_not.ModelNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md index d130eb9b860..1facab744af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_nul_characters_in_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md index 17639e931e4..94217eb69be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_null_type_matches_only_the_null_object_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NullTypeMatchesOnlyTheNullObject**](../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | +[**NullTypeMatchesOnlyTheNullObject**](../../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md index 46450724406..7ef8f8d3809 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_number_type_matches_numbers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NumberTypeMatchesNumbers**](../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | +[**NumberTypeMatchesNumbers**](../../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md index cd264b55b2e..54b8dca860a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_properties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md index de89002e7c6..830aa537f6a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_object_type_matches_objects_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectTypeMatchesObjects**](../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | +[**ObjectTypeMatchesObjects**](../../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md index edbf9a55c1f..d34a38873d9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md index 4d5815a2d7d..e9f0d0fb594 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](../../components/schema/oneof.Oneof.md) | | +[**Oneof**](../../../components/schema/oneof.Oneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md index 3a0ef36126d..4c76135c94c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md index 8d942ed9641..911190fc392 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md index fefb9401a82..e771f44811e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_oneof_with_required_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](../../components/schema/oneof_with_required.OneofWithRequired.md) | | +[**OneofWithRequired**](../../../components/schema/oneof_with_required.OneofWithRequired.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md index 0124d11832f..a70ffbcb071 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_is_not_anchored_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md index 6ebed997ea3..af2209b40b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_pattern_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](../../components/schema/pattern_validation.PatternValidation.md) | | +[**PatternValidation**](../../../components/schema/pattern_validation.PatternValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md index c5ccf76246d..9b518c8f4a1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_properties_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md index 2fc20a9cb35..5faf46567de 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md index e9e9506237b..c21624118af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_additionalproperties_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md index c703448e70d..600ca57abd9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](../../components/schema/ref_in_allof.RefInAllof.md) | | +[**RefInAllof**](../../../components/schema/ref_in_allof.RefInAllof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md index 11f104a3874..ceecd12555e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](../../components/schema/ref_in_anyof.RefInAnyof.md) | | +[**RefInAnyof**](../../../components/schema/ref_in_anyof.RefInAnyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md index 4fc6b117ab8..c95a787ffcf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_items_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](../../components/schema/ref_in_items.RefInItems.md) | | +[**RefInItems**](../../../components/schema/ref_in_items.RefInItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md index 4d86ddf03be..30f11c4730b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInNot**](../../components/schema/ref_in_not.RefInNot.md) | | +[**RefInNot**](../../../components/schema/ref_in_not.RefInNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md index 59b8a643035..c09e3677d51 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](../../components/schema/ref_in_oneof.RefInOneof.md) | | +[**RefInOneof**](../../../components/schema/ref_in_oneof.RefInOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md index 93f922226c6..be6b6db3379 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_ref_in_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](../../components/schema/ref_in_property.RefInProperty.md) | | +[**RefInProperty**](../../../components/schema/ref_in_property.RefInProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md index 732ee5d3399..a7044872a75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_default_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md index ff7a4710506..d94294f427a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](../../components/schema/required_validation.RequiredValidation.md) | | +[**RequiredValidation**](../../../components/schema/required_validation.RequiredValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md index e5f0b30ab44..f4771ae19cc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_empty_array_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md index f334f81cd10..a813fe34c75 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_required_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEscapedCharacters**](../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | +[**RequiredWithEscapedCharacters**](../../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md index c3f4ad3f8d7..dea72a79fee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_simple_enum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md index 099ae1c4600..12da8b1e31d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_string_type_matches_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**StringTypeMatchesStrings**](../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | +[**StringTypeMatchesStrings**](../../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index c1a9bb0ce2d..2d199c77847 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md index 750de06c26a..b0f2cb1ef81 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_false_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md index dde27c8ffd0..5f73b141a4d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uniqueitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md index c10fef04be8..2b07d1846a2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriFormat**](../../components/schema/uri_format.UriFormat.md) | | +[**UriFormat**](../../../components/schema/uri_format.UriFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md index 52d4f442f90..1ddfebfefbc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_reference_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriReferenceFormat**](../../components/schema/uri_reference_format.UriReferenceFormat.md) | | +[**UriReferenceFormat**](../../../components/schema/uri_reference_format.UriReferenceFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md index 7a64e909128..09bbd19ae5a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/operation_request_body_api/post_uri_template_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriTemplateFormat**](../../components/schema/uri_template_format.UriTemplateFormat.md) | | +[**UriTemplateFormat**](../../../components/schema/uri_template_format.UriTemplateFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md index 7b2b92df1dc..517a8b39ff4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_allows_a_schema_which_should_validate_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | +[**AdditionalpropertiesAllowsASchemaWhichShouldValidate**](../../../components/schema/additionalproperties_allows_a_schema_which_should_validate.AdditionalpropertiesAllowsASchemaWhichShouldValidate.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md index e9f96d0d55c..ed69cd98486 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_are_allowed_by_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesAreAllowedByDefault**](../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | +[**AdditionalpropertiesAreAllowedByDefault**](../../../components/schema/additionalproperties_are_allowed_by_default.AdditionalpropertiesAreAllowedByDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md index 3e3ecc6ca4a..f00b1ca1654 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_can_exist_by_itself_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesCanExistByItself**](../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | +[**AdditionalpropertiesCanExistByItself**](../../../components/schema/additionalproperties_can_exist_by_itself.AdditionalpropertiesCanExistByItself.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md index ed052e40d0e..e0afd9aa531 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_additionalproperties_should_not_look_in_applicators_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AdditionalpropertiesShouldNotLookInApplicators**](../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | +[**AdditionalpropertiesShouldNotLookInApplicators**](../../../components/schema/additionalproperties_should_not_look_in_applicators.AdditionalpropertiesShouldNotLookInApplicators.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md index 1365ff37b3d..7bc832071c2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_combined_with_anyof_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofCombinedWithAnyofOneof**](../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | +[**AllofCombinedWithAnyofOneof**](../../../components/schema/allof_combined_with_anyof_oneof.AllofCombinedWithAnyofOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md index 04ffd4cac18..5970bb09b07 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Allof**](../../components/schema/allof.Allof.md) | | +[**Allof**](../../../components/schema/allof.Allof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md index fa7ee715793..e192df0b6b9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_simple_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofSimpleTypes**](../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | +[**AllofSimpleTypes**](../../../components/schema/allof_simple_types.AllofSimpleTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md index 67e717f1f10..2066d1d6ef9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithBaseSchema**](../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | +[**AllofWithBaseSchema**](../../../components/schema/allof_with_base_schema.AllofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md index a59067a2f39..85972a2f0c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithOneEmptySchema**](../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | +[**AllofWithOneEmptySchema**](../../../components/schema/allof_with_one_empty_schema.AllofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md index 322485d0807..372d4b09364 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_first_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheFirstEmptySchema**](../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | +[**AllofWithTheFirstEmptySchema**](../../../components/schema/allof_with_the_first_empty_schema.AllofWithTheFirstEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md index e02da901fc5..886f88c4a8c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_the_last_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTheLastEmptySchema**](../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | +[**AllofWithTheLastEmptySchema**](../../../components/schema/allof_with_the_last_empty_schema.AllofWithTheLastEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md index 7ea2b344122..cd6487f6fd4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_allof_with_two_empty_schemas_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AllofWithTwoEmptySchemas**](../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | +[**AllofWithTwoEmptySchemas**](../../../components/schema/allof_with_two_empty_schemas.AllofWithTwoEmptySchemas.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md index 51f590f3018..428fccd638f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofComplexTypes**](../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | +[**AnyofComplexTypes**](../../../components/schema/anyof_complex_types.AnyofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md index e8d19153463..fae42248771 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Anyof**](../../components/schema/anyof.Anyof.md) | | +[**Anyof**](../../../components/schema/anyof.Anyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md index e4ba79f4a5b..91fa7522837 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithBaseSchema**](../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | +[**AnyofWithBaseSchema**](../../../components/schema/anyof_with_base_schema.AnyofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md index ca90839216f..1e03496233d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_anyof_with_one_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**AnyofWithOneEmptySchema**](../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | +[**AnyofWithOneEmptySchema**](../../../components/schema/anyof_with_one_empty_schema.AnyofWithOneEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md index 6eb6718b53d..0a4a0fc85cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_array_type_matches_arrays_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md index 1f2362b8106..9d7845b0d9e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_boolean_type_matches_booleans_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BooleanTypeMatchesBooleans**](../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | +[**BooleanTypeMatchesBooleans**](../../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md index 7d304506c9c..4a13be87e08 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_int_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByInt**](../../components/schema/by_int.ByInt.md) | | +[**ByInt**](../../../components/schema/by_int.ByInt.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md index f28368b57db..04d25c8638b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ByNumber**](../../components/schema/by_number.ByNumber.md) | | +[**ByNumber**](../../../components/schema/by_number.ByNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md index 4ce177d2f8c..d036a1e3e47 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_by_small_number_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BySmallNumber**](../../components/schema/by_small_number.BySmallNumber.md) | | +[**BySmallNumber**](../../../components/schema/by_small_number.BySmallNumber.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md index 283e07d8023..27a47615f0e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_date_time_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**DateTimeFormat**](../../components/schema/date_time_format.DateTimeFormat.md) | | +[**DateTimeFormat**](../../../components/schema/date_time_format.DateTimeFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md index 9364d7b91fe..779773e43dc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_email_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EmailFormat**](../../components/schema/email_format.EmailFormat.md) | | +[**EmailFormat**](../../../components/schema/email_format.EmailFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md index 58274f25e4b..4ea569fdc13 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with0_does_not_match_false_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith0DoesNotMatchFalse**](../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | +[**EnumWith0DoesNotMatchFalse**](../../../components/schema/enum_with0_does_not_match_false.EnumWith0DoesNotMatchFalse.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md index a5446eed2a5..df595858977 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with1_does_not_match_true_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWith1DoesNotMatchTrue**](../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | +[**EnumWith1DoesNotMatchTrue**](../../../components/schema/enum_with1_does_not_match_true.EnumWith1DoesNotMatchTrue.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md index a68668542ce..b2787d54695 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithEscapedCharacters**](../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | +[**EnumWithEscapedCharacters**](../../../components/schema/enum_with_escaped_characters.EnumWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md index 04a0b806b94..755f05c45c8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_false_does_not_match0_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithFalseDoesNotMatch0**](../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | +[**EnumWithFalseDoesNotMatch0**](../../../components/schema/enum_with_false_does_not_match0.EnumWithFalseDoesNotMatch0.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md index df487064ef9..037a8dfcfa7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enum_with_true_does_not_match1_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumWithTrueDoesNotMatch1**](../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | +[**EnumWithTrueDoesNotMatch1**](../../../components/schema/enum_with_true_does_not_match1.EnumWithTrueDoesNotMatch1.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md index bcacbf409ff..fb8d4b8d00b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_enums_in_properties_request_body.md @@ -47,7 +47,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**EnumsInProperties**](../../components/schema/enums_in_properties.EnumsInProperties.md) | | +[**EnumsInProperties**](../../../components/schema/enums_in_properties.EnumsInProperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md index b0b2d1823a6..1bd7ede1739 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_forbidden_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ForbiddenProperty**](../../components/schema/forbidden_property.ForbiddenProperty.md) | | +[**ForbiddenProperty**](../../../components/schema/forbidden_property.ForbiddenProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md index 37a108ad435..1a137ce78c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_hostname_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**HostnameFormat**](../../components/schema/hostname_format.HostnameFormat.md) | | +[**HostnameFormat**](../../../components/schema/hostname_format.HostnameFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md index 59ec3bca64c..22ced30ecaa 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_integer_type_matches_integers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**IntegerTypeMatchesIntegers**](../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | +[**IntegerTypeMatchesIntegers**](../../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md index 0de5b3d2c6b..b9c69f4d6a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | +[**InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf**](../../../components/schema/invalid_instance_should_not_raise_error_when_float_division_inf.InvalidInstanceShouldNotRaiseErrorWhenFloatDivisionInf.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md index d9bad96b8aa..f98a4325d1b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_invalid_string_value_for_default_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**InvalidStringValueForDefault**](../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | +[**InvalidStringValueForDefault**](../../../components/schema/invalid_string_value_for_default.InvalidStringValueForDefault.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md index e9a8d2a356f..a87d2fee2f6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv4_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv4Format**](../../components/schema/ipv4_format.Ipv4Format.md) | | +[**Ipv4Format**](../../../components/schema/ipv4_format.Ipv4Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md index 704bef16222..f5143ac24b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ipv6_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Ipv6Format**](../../components/schema/ipv6_format.Ipv6Format.md) | | +[**Ipv6Format**](../../../components/schema/ipv6_format.Ipv6Format.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md index d7d6ff029ff..109799afc22 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_json_pointer_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**JsonPointerFormat**](../../components/schema/json_pointer_format.JsonPointerFormat.md) | | +[**JsonPointerFormat**](../../../components/schema/json_pointer_format.JsonPointerFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md index e966a608ee6..a9df648aa67 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidation**](../../components/schema/maximum_validation.MaximumValidation.md) | | +[**MaximumValidation**](../../../components/schema/maximum_validation.MaximumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md index 5e3bec02206..3a19b3dfe80 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maximum_validation_with_unsigned_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaximumValidationWithUnsignedInteger**](../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | +[**MaximumValidationWithUnsignedInteger**](../../../components/schema/maximum_validation_with_unsigned_integer.MaximumValidationWithUnsignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md index 19f1d08af71..0b6845ad35d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxitemsValidation**](../../components/schema/maxitems_validation.MaxitemsValidation.md) | | +[**MaxitemsValidation**](../../../components/schema/maxitems_validation.MaxitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md index 9e76df3ce80..d20fe041a35 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxlengthValidation**](../../components/schema/maxlength_validation.MaxlengthValidation.md) | | +[**MaxlengthValidation**](../../../components/schema/maxlength_validation.MaxlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md index 5ea8c2a4411..6447d87d3ca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties0_means_the_object_is_empty_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Maxproperties0MeansTheObjectIsEmpty**](../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | +[**Maxproperties0MeansTheObjectIsEmpty**](../../../components/schema/maxproperties0_means_the_object_is_empty.Maxproperties0MeansTheObjectIsEmpty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md index f6b6f82f78b..26be7c887ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_maxproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MaxpropertiesValidation**](../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | +[**MaxpropertiesValidation**](../../../components/schema/maxproperties_validation.MaxpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md index a8022bd210c..091b49ea6fb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidation**](../../components/schema/minimum_validation.MinimumValidation.md) | | +[**MinimumValidation**](../../../components/schema/minimum_validation.MinimumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md index 42c508786fb..43a0f8b3d38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minimum_validation_with_signed_integer_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinimumValidationWithSignedInteger**](../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | +[**MinimumValidationWithSignedInteger**](../../../components/schema/minimum_validation_with_signed_integer.MinimumValidationWithSignedInteger.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md index 16199008076..c4869d01a24 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinitemsValidation**](../../components/schema/minitems_validation.MinitemsValidation.md) | | +[**MinitemsValidation**](../../../components/schema/minitems_validation.MinitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md index 7431505f7ec..65db58ff6eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minlength_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinlengthValidation**](../../components/schema/minlength_validation.MinlengthValidation.md) | | +[**MinlengthValidation**](../../../components/schema/minlength_validation.MinlengthValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md index 065a0a1e9b7..efbec7647bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_minproperties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**MinpropertiesValidation**](../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | +[**MinpropertiesValidation**](../../../components/schema/minproperties_validation.MinpropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md index aca8a19e3b0..ee263c87b46 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_allof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAllofToCheckValidationSemantics**](../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | +[**NestedAllofToCheckValidationSemantics**](../../../components/schema/nested_allof_to_check_validation_semantics.NestedAllofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md index 2a907729b27..b5896dccefe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_anyof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedAnyofToCheckValidationSemantics**](../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | +[**NestedAnyofToCheckValidationSemantics**](../../../components/schema/nested_anyof_to_check_validation_semantics.NestedAnyofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md index 01804a26932..abf0cf12408 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_items_request_body.md @@ -52,7 +52,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedItems**](../../components/schema/nested_items.NestedItems.md) | | +[**NestedItems**](../../../components/schema/nested_items.NestedItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md index bf1e68b949c..abfdced16d7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nested_oneof_to_check_validation_semantics_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NestedOneofToCheckValidationSemantics**](../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | +[**NestedOneofToCheckValidationSemantics**](../../../components/schema/nested_oneof_to_check_validation_semantics.NestedOneofToCheckValidationSemantics.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md index d060f66727e..9dd81d59a47 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_more_complex_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NotMoreComplexSchema**](../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | +[**NotMoreComplexSchema**](../../../components/schema/not_more_complex_schema.NotMoreComplexSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md index 01051574c16..ec968f76943 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ModelNot**](../../components/schema/model_not.ModelNot.md) | | +[**ModelNot**](../../../components/schema/model_not.ModelNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md index 3246b5ca37c..bec31525f44 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_nul_characters_in_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NulCharactersInStrings**](../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | +[**NulCharactersInStrings**](../../../components/schema/nul_characters_in_strings.NulCharactersInStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md index a0fcc88ac6f..bbe9ae66341 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_null_type_matches_only_the_null_object_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NullTypeMatchesOnlyTheNullObject**](../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | +[**NullTypeMatchesOnlyTheNullObject**](../../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md index 00a562e21a0..f6ae278f73d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_number_type_matches_numbers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NumberTypeMatchesNumbers**](../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | +[**NumberTypeMatchesNumbers**](../../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md index 101e50387ba..9cf44ab2e92 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_properties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md index d43e3f559cb..e11684cabf6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_object_type_matches_objects_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectTypeMatchesObjects**](../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | +[**ObjectTypeMatchesObjects**](../../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md index af8b48dcd25..036fe4b6e96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_complex_types_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofComplexTypes**](../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | +[**OneofComplexTypes**](../../../components/schema/oneof_complex_types.OneofComplexTypes.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md index bdddb5edf2d..155d8301b0b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Oneof**](../../components/schema/oneof.Oneof.md) | | +[**Oneof**](../../../components/schema/oneof.Oneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md index 02dbd7f02c5..188c22d516e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_base_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithBaseSchema**](../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | +[**OneofWithBaseSchema**](../../../components/schema/oneof_with_base_schema.OneofWithBaseSchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md index 9a16aa7cda0..d6bcb4e2c50 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_empty_schema_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithEmptySchema**](../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | +[**OneofWithEmptySchema**](../../../components/schema/oneof_with_empty_schema.OneofWithEmptySchema.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md index 5ee94cb58e9..4236e753104 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_oneof_with_required_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**OneofWithRequired**](../../components/schema/oneof_with_required.OneofWithRequired.md) | | +[**OneofWithRequired**](../../../components/schema/oneof_with_required.OneofWithRequired.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md index 72531123114..590780a1955 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_is_not_anchored_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md index 4e90f3f782e..7511d01b3a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_pattern_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](../../components/schema/pattern_validation.PatternValidation.md) | | +[**PatternValidation**](../../../components/schema/pattern_validation.PatternValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md index 9e57c5827a4..a9d34a30035 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_properties_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md index 7349abacfd7..761f54d4077 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md index b4180a606e0..79c9516efd7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_additionalproperties_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md index add4029a834..1dbf3f6ebc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](../../components/schema/ref_in_allof.RefInAllof.md) | | +[**RefInAllof**](../../../components/schema/ref_in_allof.RefInAllof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md index 28f2002d678..a49a3e54c68 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](../../components/schema/ref_in_anyof.RefInAnyof.md) | | +[**RefInAnyof**](../../../components/schema/ref_in_anyof.RefInAnyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md index 97887308ced..f5b9ba46c43 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_items_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](../../components/schema/ref_in_items.RefInItems.md) | | +[**RefInItems**](../../../components/schema/ref_in_items.RefInItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md index 35a5b0d30c1..d6cae336ab8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInNot**](../../components/schema/ref_in_not.RefInNot.md) | | +[**RefInNot**](../../../components/schema/ref_in_not.RefInNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md index 2ff973e782a..fc443efe67d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](../../components/schema/ref_in_oneof.RefInOneof.md) | | +[**RefInOneof**](../../../components/schema/ref_in_oneof.RefInOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md index 2f25d60990e..4cc5ac0604e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_ref_in_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](../../components/schema/ref_in_property.RefInProperty.md) | | +[**RefInProperty**](../../../components/schema/ref_in_property.RefInProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md index e39dd300624..7c47db02f7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_default_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md index 498edf78c24..85517a23889 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](../../components/schema/required_validation.RequiredValidation.md) | | +[**RequiredValidation**](../../../components/schema/required_validation.RequiredValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md index f7bf81b96b1..b0c5408f91b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_empty_array_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md index bfbe0f43e5b..8a3688a08cb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_required_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEscapedCharacters**](../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | +[**RequiredWithEscapedCharacters**](../../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md index 2b9ae834383..0dd3f14c2d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_simple_enum_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**SimpleEnumValidation**](../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | +[**SimpleEnumValidation**](../../../components/schema/simple_enum_validation.SimpleEnumValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md index fe75bc8d942..ed4c5ac9156 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_string_type_matches_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**StringTypeMatchesStrings**](../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | +[**StringTypeMatchesStrings**](../../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md index 9378ff58cd7..91c275f46b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | +[**TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing**](../../../components/schema/the_default_keyword_does_not_do_anything_if_the_property_is_missing.TheDefaultKeywordDoesNotDoAnythingIfThePropertyIsMissing.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md index c04f47cdefc..d46842a211b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_false_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md index 5846e0fea50..951f6a251c4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uniqueitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md index 38c76af9b6e..2194cd2613e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriFormat**](../../components/schema/uri_format.UriFormat.md) | | +[**UriFormat**](../../../components/schema/uri_format.UriFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md index 0567d46b179..76b609cd53b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_reference_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriReferenceFormat**](../../components/schema/uri_reference_format.UriReferenceFormat.md) | | +[**UriReferenceFormat**](../../../components/schema/uri_reference_format.UriReferenceFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md index 4c6787220fa..7d499c75cbc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/path_post_api/post_uri_template_format_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UriTemplateFormat**](../../components/schema/uri_template_format.UriTemplateFormat.md) | | +[**UriTemplateFormat**](../../../components/schema/uri_template_format.UriTemplateFormat.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md index 28bb609a3ee..cd54d4c1b73 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_is_not_anchored_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternIsNotAnchored**](../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | +[**PatternIsNotAnchored**](../../../components/schema/pattern_is_not_anchored.PatternIsNotAnchored.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md index 482bede8433..50179008163 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/pattern_api/post_pattern_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PatternValidation**](../../components/schema/pattern_validation.PatternValidation.md) | | +[**PatternValidation**](../../../components/schema/pattern_validation.PatternValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md index 64b97048169..d28af6af089 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_object_properties_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectPropertiesValidation**](../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | +[**ObjectPropertiesValidation**](../../../components/schema/object_properties_validation.ObjectPropertiesValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md index c77122077be..c9ab219be8e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/properties_api/post_properties_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertiesWithEscapedCharacters**](../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | +[**PropertiesWithEscapedCharacters**](../../../components/schema/properties_with_escaped_characters.PropertiesWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md index a8f6da2d115..473ecb615e3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_property_named_ref_that_is_not_a_reference_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**PropertyNamedRefThatIsNotAReference**](../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | +[**PropertyNamedRefThatIsNotAReference**](../../../components/schema/property_named_ref_that_is_not_a_reference.PropertyNamedRefThatIsNotAReference.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md index 946e76f50ce..41432d6e21b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_additionalproperties_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAdditionalproperties**](../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | +[**RefInAdditionalproperties**](../../../components/schema/ref_in_additionalproperties.RefInAdditionalproperties.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md index 236420021a0..ab91c357e7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_allof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAllof**](../../components/schema/ref_in_allof.RefInAllof.md) | | +[**RefInAllof**](../../../components/schema/ref_in_allof.RefInAllof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md index 5e103989046..311e8f67d7b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_anyof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInAnyof**](../../components/schema/ref_in_anyof.RefInAnyof.md) | | +[**RefInAnyof**](../../../components/schema/ref_in_anyof.RefInAnyof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md index 9b86ae1bbfc..5d1b29de9c9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_items_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInItems**](../../components/schema/ref_in_items.RefInItems.md) | | +[**RefInItems**](../../../components/schema/ref_in_items.RefInItems.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md index 6018c43975e..6601c358d0a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_not_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInNot**](../../components/schema/ref_in_not.RefInNot.md) | | +[**RefInNot**](../../../components/schema/ref_in_not.RefInNot.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md index 921725df8df..4abd33a85d4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_oneof_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInOneof**](../../components/schema/ref_in_oneof.RefInOneof.md) | | +[**RefInOneof**](../../../components/schema/ref_in_oneof.RefInOneof.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md index 020273f99f4..42d829a72a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/ref_api/post_ref_in_property_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RefInProperty**](../../components/schema/ref_in_property.RefInProperty.md) | | +[**RefInProperty**](../../../components/schema/ref_in_property.RefInProperty.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md index 273f4e4b30f..da7706c70bb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_default_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredDefaultValidation**](../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | +[**RequiredDefaultValidation**](../../../components/schema/required_default_validation.RequiredDefaultValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md index bd072fa165e..c548b8e04af 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredValidation**](../../components/schema/required_validation.RequiredValidation.md) | | +[**RequiredValidation**](../../../components/schema/required_validation.RequiredValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md index 506e5b690bb..7d8f5f4e2ee 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_empty_array_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEmptyArray**](../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | +[**RequiredWithEmptyArray**](../../../components/schema/required_with_empty_array.RequiredWithEmptyArray.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md index 80a5a5858e5..212c2b29446 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/required_api/post_required_with_escaped_characters_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**RequiredWithEscapedCharacters**](../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | +[**RequiredWithEscapedCharacters**](../../../components/schema/required_with_escaped_characters.RequiredWithEscapedCharacters.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md index ac591da9c53..53d5be120eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_array_type_matches_arrays_request_body.md @@ -46,7 +46,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ArrayTypeMatchesArrays**](../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | +[**ArrayTypeMatchesArrays**](../../../components/schema/array_type_matches_arrays.ArrayTypeMatchesArrays.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md index 6c3dc1a82cd..49f8aba96eb 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_boolean_type_matches_booleans_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**BooleanTypeMatchesBooleans**](../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | +[**BooleanTypeMatchesBooleans**](../../../components/schema/boolean_type_matches_booleans.BooleanTypeMatchesBooleans.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md index 55d9db62a2e..3a2d998db1e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_integer_type_matches_integers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**IntegerTypeMatchesIntegers**](../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | +[**IntegerTypeMatchesIntegers**](../../../components/schema/integer_type_matches_integers.IntegerTypeMatchesIntegers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md index f44a764c9ac..9dceccd9f41 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_null_type_matches_only_the_null_object_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NullTypeMatchesOnlyTheNullObject**](../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | +[**NullTypeMatchesOnlyTheNullObject**](../../../components/schema/null_type_matches_only_the_null_object.NullTypeMatchesOnlyTheNullObject.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md index 7e0cde54aac..bbc4bb66c33 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_number_type_matches_numbers_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**NumberTypeMatchesNumbers**](../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | +[**NumberTypeMatchesNumbers**](../../../components/schema/number_type_matches_numbers.NumberTypeMatchesNumbers.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md index e7b8e741c0f..40979f63638 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_object_type_matches_objects_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**ObjectTypeMatchesObjects**](../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | +[**ObjectTypeMatchesObjects**](../../../components/schema/object_type_matches_objects.ObjectTypeMatchesObjects.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md index a0470db1580..c65e6945591 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/type_api/post_string_type_matches_strings_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**StringTypeMatchesStrings**](../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | +[**StringTypeMatchesStrings**](../../../components/schema/string_type_matches_strings.StringTypeMatchesStrings.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md index c9008e84f03..83b8044ca97 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_false_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsFalseValidation**](../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | +[**UniqueitemsFalseValidation**](../../../components/schema/uniqueitems_false_validation.UniqueitemsFalseValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md index 1c4f653ce78..f18bbc09e8c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md +++ b/samples/openapi3/client/3_0_3_unit_test/python/docs/apis/tags/unique_items_api/post_uniqueitems_validation_request_body.md @@ -44,7 +44,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**UniqueitemsValidation**](../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | +[**UniqueitemsValidation**](../../../components/schema/uniqueitems_validation.UniqueitemsValidation.md) | | ### Return Types, Responses diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md index 004999aa39b..0f656c2842e 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/docs/apis/tags/default_api/post_operators.md @@ -48,7 +48,7 @@ skip_deserialization | bool | default is False | when True, headers and body wil # request_body.application_json Type | Description | Notes ------------- | ------------- | ------------- -[**Operator**](../../components/schema/operator.Operator.md) | | +[**Operator**](../../../components/schema/operator.Operator.md) | | ### Return Types, Responses 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 From e2b084989ba61a849f3e0bdd5802bbbfc44de8bb Mon Sep 17 00:00:00 2001 From: Justin Black Date: Thu, 1 Dec 2022 14:40:59 -0800 Subject: [PATCH 44/44] Regen samples with better endpoint test spacing --- .../resources/python/endpoint_test.handlebars | 8 ++---- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_post.py | 4 +-- .../test_post.py | 2 -- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 9 +++++-- .../test_post.py | 5 ++-- .../test_post.py | 3 +-- .../test_post.py | 6 +++-- .../test_post.py | 2 -- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 2 -- .../test_post.py | 5 ++-- .../test_post.py | 5 ++-- .../test_post.py | 4 +-- .../test_post.py | 3 +-- .../test_post.py | 8 ++++-- .../test_post.py | 11 ++++++-- .../test_post.py | 4 +-- .../test_post.py | 4 +-- .../test_post.py | 3 +-- .../test_post.py | 7 +++-- .../test_post.py | 7 +++-- .../test_post.py | 4 +-- .../test_post.py | 4 +-- .../test_post.py | 4 +-- .../test_post.py | 4 +-- .../test_post.py | 4 +-- .../test_post.py | 7 +++-- .../test_post.py | 3 +-- .../test_post.py | 7 +++-- .../test_post.py | 10 +++++-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 7 +++-- .../test_post.py | 7 +++-- .../test_post.py | 7 +++-- .../test_post.py | 5 ++-- .../test_post.py | 5 ++-- .../test_post.py | 5 ++-- .../test_post.py | 6 +++-- .../test_post.py | 3 +-- .../test_post.py | 7 +++-- .../test_post.py | 5 ++-- .../test_post.py | 8 ++++-- .../test_post.py | 5 ++-- .../test_post.py | 6 +++-- .../test_post.py | 7 +++-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 4 +-- .../test_post.py | 3 +-- .../test_post.py | 4 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 11 ++++++-- .../test_post.py | 10 +++++-- .../test_post.py | 7 +++-- .../test_post.py | 8 ++++-- .../test_post.py | 5 ++-- .../test_post.py | 5 ++-- .../test_post.py | 4 +-- .../test_post.py | 3 +-- .../test_post.py | 5 ++-- .../test_post.py | 2 -- .../test_post.py | 9 +++++-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 2 -- .../test_post.py | 6 +++-- .../test_post.py | 2 -- .../test_post.py | 3 +-- .../test_post.py | 3 +-- .../test_post.py | 10 +++++-- .../test_post.py | 4 +-- .../test_post.py | 16 ++++++++++-- .../test_post.py | 26 +++++++++++++++++-- .../test_post.py | 7 +++-- .../test_post.py | 7 +++-- .../test_post.py | 7 +++-- .../test_paths/test_operators/test_post.py | 1 - .../test_another_fake_dummy/test_patch.py | 5 ---- .../test/test_paths/test_fake/test_delete.py | 1 - .../test/test_paths/test_fake/test_get.py | 1 - .../test/test_paths/test_fake/test_patch.py | 5 ---- .../test/test_paths/test_fake/test_post.py | 1 - .../test_get.py | 3 --- .../test_put.py | 3 --- .../test_put.py | 3 --- .../test_put.py | 1 - .../test_fake_classname_test/test_patch.py | 5 ---- .../test_fake_delete_coffee_id/test_delete.py | 1 - .../test_paths/test_fake_health/test_get.py | 3 --- .../test_post.py | 3 --- .../test_fake_inline_composition/test_post.py | 5 ---- .../test_fake_json_form_data/test_get.py | 1 - .../test_fake_json_patch/test_patch.py | 1 - .../test_fake_json_with_charset/test_post.py | 3 --- .../test_fake_obj_in_query/test_get.py | 1 - .../test_post.py | 3 --- .../test_post.py | 3 --- .../test_get.py | 3 --- .../test_fake_ref_obj_in_query/test_get.py | 1 - .../test_post.py | 3 --- .../test_fake_refs_arraymodel/test_post.py | 3 --- .../test_fake_refs_boolean/test_post.py | 3 --- .../test_post.py | 3 --- .../test_fake_refs_enum/test_post.py | 3 --- .../test_fake_refs_mammal/test_post.py | 5 ---- .../test_fake_refs_number/test_post.py | 3 --- .../test_post.py | 3 --- .../test_fake_refs_string/test_post.py | 3 --- .../test_get.py | 5 ---- .../test_put.py | 1 - .../test_post.py | 5 ---- .../test_fake_upload_file/test_post.py | 3 --- .../test_fake_upload_files/test_post.py | 3 --- .../test/test_paths/test_foo/test_get.py | 3 --- .../test/test_paths/test_pet/test_post.py | 5 ---- .../test/test_paths/test_pet/test_put.py | 5 ---- .../test_pet_find_by_status/test_get.py | 5 ---- .../test_pet_find_by_tags/test_get.py | 5 ---- .../test_paths/test_pet_pet_id/test_delete.py | 1 - .../test_paths/test_pet_pet_id/test_get.py | 5 ---- .../test_paths/test_pet_pet_id/test_post.py | 1 - .../test_pet_pet_id_upload_image/test_post.py | 3 --- .../test_store_inventory/test_get.py | 3 --- .../test_paths/test_store_order/test_post.py | 7 ----- .../test_store_order_order_id/test_delete.py | 1 - .../test_store_order_order_id/test_get.py | 5 ---- .../test/test_paths/test_user/test_post.py | 3 --- .../test_user_create_with_array/test_post.py | 3 --- .../test_user_create_with_list/test_post.py | 3 --- .../test_paths/test_user_login/test_get.py | 5 ---- .../test_paths/test_user_logout/test_get.py | 1 - .../test_user_username/test_delete.py | 1 - .../test_paths/test_user_username/test_get.py | 5 ---- .../test_paths/test_user_username/test_put.py | 3 --- 233 files changed, 282 insertions(+), 617 deletions(-) diff --git a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars index 67d11002504..ac688f189e0 100644 --- a/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_test.handlebars @@ -39,10 +39,10 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#if schema}} response_body_schema = {{httpMethod}}.response_for_{{../@key}}.{{#if schema.nameInSnakeCase}}{{schema.name}}{{else}}{{schema.baseName}}{{/if}} {{/if}} - {{#if this.testCases}} {{#each testCases}} {{#with this }} + def test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}}(self): # {{description}} accept_content_type = '{{{../@key}}}' @@ -83,7 +83,6 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{/with}} {{/each}} {{/if}} - {{/each}} {{else}} response_body = '' @@ -95,9 +94,9 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#if required}} {{#each content}} {{#if this.testCases}} - {{#each testCases}} {{#with this }} + def test_{{@key}}_{{#if valid}}passes{{else}}fails{{/if}}(self): content_type = '{{{../@key}}}' # {{description}} @@ -129,16 +128,13 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): self.api.{{httpMethod}}(body=body) {{/if}} {{/with}} - {{/each}} - {{/if}} {{/each}} {{/if}} {{/with}} {{else}} {{/if}} - {{/with}} if __name__ == '__main__': diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/test_post.py index 2953a881b5f..b436e1e2502 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_allows_a_schema_which_should_validate_request_body/test_post.py @@ -125,8 +125,5 @@ def test_an_additional_valid_property_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_are_allowed_by_default_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_are_allowed_by_default_request_body/test_post.py index addc8fe0afe..4ac129e20a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_are_allowed_by_default_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_are_allowed_by_default_request_body/test_post.py @@ -71,8 +71,5 @@ def test_additional_properties_are_allowed_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_can_exist_by_itself_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_can_exist_by_itself_request_body/test_post.py index 5e2654890a1..776607bbed7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_can_exist_by_itself_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_can_exist_by_itself_request_body/test_post.py @@ -84,8 +84,5 @@ def test_an_additional_valid_property_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_should_not_look_in_applicators_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_should_not_look_in_applicators_request_body/test_post.py index 7e796eae993..cbb3875ca66 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_should_not_look_in_applicators_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_additionalproperties_should_not_look_in_applicators_request_body/test_post.py @@ -88,8 +88,5 @@ def test_valid_test_case_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_combined_with_anyof_oneof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_combined_with_anyof_oneof_request_body/test_post.py index 1c2245e98a5..280853d3648 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_combined_with_anyof_oneof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_combined_with_anyof_oneof_request_body/test_post.py @@ -162,8 +162,5 @@ def test_allof_false_anyof_false_oneof_false_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_request_body/test_post.py index 844df9536a8..24e176f25c7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_request_body/test_post.py @@ -122,8 +122,5 @@ def test_wrong_type_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_simple_types_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_simple_types_request_body/test_post.py index 0c7b80d9231..9aaff267463 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_simple_types_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_simple_types_request_body/test_post.py @@ -78,8 +78,5 @@ def test_mismatch_one_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_base_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_base_schema_request_body/test_post.py index f85d5fb4b16..4d6c1f8f538 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_base_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_base_schema_request_body/test_post.py @@ -145,8 +145,5 @@ def test_mismatch_second_allof_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_one_empty_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_one_empty_schema_request_body/test_post.py index 6371981408a..b1b081013da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_one_empty_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_one_empty_schema_request_body/test_post.py @@ -64,8 +64,5 @@ def test_any_data_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_first_empty_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_first_empty_schema_request_body/test_post.py index 818026898f3..f7ae415ee06 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_first_empty_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_first_empty_schema_request_body/test_post.py @@ -78,8 +78,5 @@ def test_number_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_last_empty_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_last_empty_schema_request_body/test_post.py index 2570346598e..8d5191c8266 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_last_empty_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_the_last_empty_schema_request_body/test_post.py @@ -78,8 +78,5 @@ def test_number_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_two_empty_schemas_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_two_empty_schemas_request_body/test_post.py index 32ffcc77175..b7892824e91 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_two_empty_schemas_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_allof_with_two_empty_schemas_request_body/test_post.py @@ -64,8 +64,5 @@ def test_any_data_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_complex_types_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_complex_types_request_body/test_post.py index 4db379859a6..6bc05140829 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_complex_types_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_complex_types_request_body/test_post.py @@ -154,8 +154,5 @@ def test_first_anyof_valid_complex_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_request_body/test_post.py index ddfa2c86034..57677c0b456 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_request_body/test_post.py @@ -138,8 +138,5 @@ def test_first_anyof_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_base_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_base_schema_request_body/test_post.py index 8becdef8fdb..325134aa6a4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_base_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_base_schema_request_body/test_post.py @@ -92,8 +92,5 @@ def test_mismatch_base_schema_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_one_empty_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_one_empty_schema_request_body/test_post.py index 2d6bfc67064..c5f6dc0cc6e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_one_empty_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_anyof_with_one_empty_schema_request_body/test_post.py @@ -94,8 +94,5 @@ def test_number_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_array_type_matches_arrays_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_array_type_matches_arrays_request_body/test_post.py index d0af4d62392..48e2ead048f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_array_type_matches_arrays_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_array_type_matches_arrays_request_body/test_post.py @@ -150,8 +150,5 @@ def test_an_integer_is_not_an_array_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_boolean_type_matches_booleans_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_boolean_type_matches_booleans_request_body/test_post.py index 372391ceec2..dd471d5a357 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_boolean_type_matches_booleans_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_boolean_type_matches_booleans_request_body/test_post.py @@ -208,8 +208,5 @@ def test_an_object_is_not_a_boolean_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_int_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_int_request_body/test_post.py index bbaa7049bfa..4d279a4c91a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_int_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_int_request_body/test_post.py @@ -108,8 +108,5 @@ def test_ignores_non_numbers_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_number_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_number_request_body/test_post.py index b5fb1978a48..cc8e52704d0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_number_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_number_request_body/test_post.py @@ -108,8 +108,5 @@ def test_zero_is_multiple_of_anything_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_small_number_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_small_number_request_body/test_post.py index 22fa1a595f3..59ea2282917 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_small_number_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_by_small_number_request_body/test_post.py @@ -78,8 +78,5 @@ def test_00075_is_multiple_of00001_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_date_time_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_date_time_format_request_body/test_post.py index af22016d560..c88cf2918c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_date_time_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_date_time_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_email_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_email_format_request_body/test_post.py index 9db1fa8a19f..d9617748a14 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_email_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_email_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with0_does_not_match_false_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with0_does_not_match_false_request_body/test_post.py index f4e6c929da8..3c0d66329a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with0_does_not_match_false_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with0_does_not_match_false_request_body/test_post.py @@ -108,8 +108,5 @@ def test_false_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with1_does_not_match_true_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with1_does_not_match_true_request_body/test_post.py index abc6c0312cc..0d7a807789b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with1_does_not_match_true_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with1_does_not_match_true_request_body/test_post.py @@ -108,8 +108,5 @@ def test_float_one_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_escaped_characters_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_escaped_characters_request_body/test_post.py index f3477244dab..9faa5d73a74 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_escaped_characters_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_escaped_characters_request_body/test_post.py @@ -108,8 +108,5 @@ def test_another_string_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_false_does_not_match0_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_false_does_not_match0_request_body/test_post.py index ee90582ed62..da979669dd4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_false_does_not_match0_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_false_does_not_match0_request_body/test_post.py @@ -92,8 +92,5 @@ def test_integer_zero_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_true_does_not_match1_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_true_does_not_match1_request_body/test_post.py index d315be52a6d..7ccd08ad8f3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_true_does_not_match1_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enum_with_true_does_not_match1_request_body/test_post.py @@ -92,8 +92,5 @@ def test_integer_one_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enums_in_properties_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enums_in_properties_request_body/test_post.py index 0abeeb147b8..74b0bfec1d6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enums_in_properties_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_enums_in_properties_request_body/test_post.py @@ -172,8 +172,5 @@ def test_missing_required_property_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_forbidden_property_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_forbidden_property_request_body/test_post.py index e40d1c665b5..8b2731cb207 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_forbidden_property_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_forbidden_property_request_body/test_post.py @@ -88,8 +88,5 @@ def test_property_absent_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_hostname_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_hostname_format_request_body/test_post.py index 1740394b4f1..7875ee9d31a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_hostname_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_hostname_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_integer_type_matches_integers_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_integer_type_matches_integers_request_body/test_post.py index 12ccf62e7ef..391a61214f5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_integer_type_matches_integers_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_integer_type_matches_integers_request_body/test_post.py @@ -194,8 +194,5 @@ def test_an_array_is_not_an_integer_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/test_post.py index e9055591d28..a493eaceee6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_request_body/test_post.py @@ -78,8 +78,5 @@ def test_valid_integer_with_multipleof_float_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_string_value_for_default_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_string_value_for_default_request_body/test_post.py index 10c3ad84fdf..54c0cefff91 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_string_value_for_default_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_invalid_string_value_for_default_request_body/test_post.py @@ -98,8 +98,5 @@ def test_still_valid_when_the_invalid_default_is_used_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv4_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv4_format_request_body/test_post.py index 6e0d64bfa2b..c2a987e2bbd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv4_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv4_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv6_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv6_format_request_body/test_post.py index 949b3e87fee..35716ff73b7 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv6_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ipv6_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_json_pointer_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_json_pointer_format_request_body/test_post.py index 41dc22d225c..42daa77aade 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_json_pointer_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_json_pointer_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_request_body/test_post.py index 3303a47573e..0d755fcd7dd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_request_body/test_post.py @@ -138,8 +138,5 @@ def test_ignores_non_numbers_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_with_unsigned_integer_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_with_unsigned_integer_request_body/test_post.py index 1919ee8e579..5d6b478e99c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_with_unsigned_integer_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maximum_validation_with_unsigned_integer_request_body/test_post.py @@ -138,8 +138,5 @@ def test_boundary_point_float_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxitems_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxitems_validation_request_body/test_post.py index 190786b34fc..420e4a856ad 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxitems_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxitems_validation_request_body/test_post.py @@ -147,8 +147,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxlength_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxlength_validation_request_body/test_post.py index 9e7fa12c7c0..e95b2086f87 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxlength_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxlength_validation_request_body/test_post.py @@ -168,8 +168,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties0_means_the_object_is_empty_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties0_means_the_object_is_empty_request_body/test_post.py index d7ebb601f88..9a8951696c5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties0_means_the_object_is_empty_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties0_means_the_object_is_empty_request_body/test_post.py @@ -82,8 +82,5 @@ def test_one_property_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties_validation_request_body/test_post.py index 6031533b8c9..1c7497ac6ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_maxproperties_validation_request_body/test_post.py @@ -217,8 +217,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_request_body/test_post.py index 9c54fc56ebd..6591bd0bbe1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_request_body/test_post.py @@ -138,8 +138,5 @@ def test_ignores_non_numbers_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_with_signed_integer_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_with_signed_integer_request_body/test_post.py index 0b66fd1c883..857cdfd61f0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_with_signed_integer_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minimum_validation_with_signed_integer_request_body/test_post.py @@ -212,8 +212,5 @@ def test_ignores_non_numbers_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minitems_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minitems_validation_request_body/test_post.py index 3442023951f..2aa702bf91a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minitems_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minitems_validation_request_body/test_post.py @@ -144,8 +144,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minlength_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minlength_validation_request_body/test_post.py index 9e7f2a306fe..6440f807477 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minlength_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minlength_validation_request_body/test_post.py @@ -152,8 +152,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minproperties_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minproperties_validation_request_body/test_post.py index f777f6ae69d..412c6adad3b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minproperties_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_minproperties_validation_request_body/test_post.py @@ -208,8 +208,5 @@ def test_exact_length_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_allof_to_check_validation_semantics_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_allof_to_check_validation_semantics_request_body/test_post.py index e0cb87f8304..07bcfaaf489 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_allof_to_check_validation_semantics_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_allof_to_check_validation_semantics_request_body/test_post.py @@ -78,8 +78,5 @@ def test_null_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_anyof_to_check_validation_semantics_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_anyof_to_check_validation_semantics_request_body/test_post.py index b31a20a53e4..3e3305c1e92 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_anyof_to_check_validation_semantics_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_anyof_to_check_validation_semantics_request_body/test_post.py @@ -78,8 +78,5 @@ def test_null_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_items_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_items_request_body/test_post.py index 135f8213328..641aa3dfeed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_items_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_items_request_body/test_post.py @@ -173,8 +173,5 @@ def test_not_deep_enough_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_oneof_to_check_validation_semantics_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_oneof_to_check_validation_semantics_request_body/test_post.py index d5bd55fa779..0a906b2f309 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_oneof_to_check_validation_semantics_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nested_oneof_to_check_validation_semantics_request_body/test_post.py @@ -78,8 +78,5 @@ def test_null_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_more_complex_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_more_complex_schema_request_body/test_post.py index 02f26b50e74..7aa2c9c2c38 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_more_complex_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_more_complex_schema_request_body/test_post.py @@ -114,8 +114,5 @@ def test_match_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_request_body/test_post.py index 326178bcebb..ac7a92793bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_not_request_body/test_post.py @@ -78,8 +78,5 @@ def test_disallowed_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nul_characters_in_strings_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nul_characters_in_strings_request_body/test_post.py index de7dd20e750..e1508ae4731 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nul_characters_in_strings_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_nul_characters_in_strings_request_body/test_post.py @@ -78,8 +78,5 @@ def test_do_not_match_string_lacking_nul_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_null_type_matches_only_the_null_object_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_null_type_matches_only_the_null_object_request_body/test_post.py index 9915024ac4a..6033193efb2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_null_type_matches_only_the_null_object_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_null_type_matches_only_the_null_object_request_body/test_post.py @@ -192,8 +192,5 @@ def test_a_string_is_not_null_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_number_type_matches_numbers_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_number_type_matches_numbers_request_body/test_post.py index f2ee7274462..b7a96bc69b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_number_type_matches_numbers_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_number_type_matches_numbers_request_body/test_post.py @@ -210,8 +210,5 @@ def test_a_float_with_zero_fractional_part_is_a_number_and_an_integer_passes(sel assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_properties_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_properties_validation_request_body/test_post.py index e0afae356c6..11e6cb773cf 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_properties_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_properties_validation_request_body/test_post.py @@ -205,8 +205,5 @@ def test_both_properties_invalid_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_type_matches_objects_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_type_matches_objects_request_body/test_post.py index 171d66b0b46..275cec7d8a5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_type_matches_objects_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_object_type_matches_objects_request_body/test_post.py @@ -150,8 +150,5 @@ def test_a_boolean_is_not_an_object_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_complex_types_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_complex_types_request_body/test_post.py index 195d452ff15..23ef1946cf8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_complex_types_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_complex_types_request_body/test_post.py @@ -138,8 +138,5 @@ def test_second_oneof_valid_complex_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_request_body/test_post.py index c05112781e6..d9aed4a0988 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_request_body/test_post.py @@ -122,8 +122,5 @@ def test_neither_oneof_valid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_base_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_base_schema_request_body/test_post.py index ce978513996..6e4e7d327ae 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_base_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_base_schema_request_body/test_post.py @@ -92,8 +92,5 @@ def test_one_oneof_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_empty_schema_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_empty_schema_request_body/test_post.py index 8f1a5915228..4756f10d900 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_empty_schema_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_empty_schema_request_body/test_post.py @@ -78,8 +78,5 @@ def test_one_valid_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_required_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_required_request_body/test_post.py index 50d3b0febb9..cf9efc4ff92 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_required_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_oneof_with_required_request_body/test_post.py @@ -142,8 +142,5 @@ def test_second_valid_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_is_not_anchored_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_is_not_anchored_request_body/test_post.py index 72dab2760b8..d3ffa882bb5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_is_not_anchored_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_is_not_anchored_request_body/test_post.py @@ -64,8 +64,5 @@ def test_matches_a_substring_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_validation_request_body/test_post.py index faf41cc7b0f..a9a06ab6d65 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_pattern_validation_request_body/test_post.py @@ -260,8 +260,5 @@ def test_ignores_integers_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_properties_with_escaped_characters_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_properties_with_escaped_characters_request_body/test_post.py index 6daed84e25d..2df083724a0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_properties_with_escaped_characters_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_properties_with_escaped_characters_request_body/test_post.py @@ -104,8 +104,5 @@ def test_object_with_strings_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_property_named_ref_that_is_not_a_reference_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_property_named_ref_that_is_not_a_reference_request_body/test_post.py index 28ece78b000..cb32a5b2a52 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_property_named_ref_that_is_not_a_reference_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_property_named_ref_that_is_not_a_reference_request_body/test_post.py @@ -84,8 +84,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_additionalproperties_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_additionalproperties_request_body/test_post.py index 79b8e9fa8b6..9a530d235a9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_additionalproperties_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_additionalproperties_request_body/test_post.py @@ -90,8 +90,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_allof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_allof_request_body/test_post.py index ba655509d26..6f6f2ab987d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_allof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_allof_request_body/test_post.py @@ -84,8 +84,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_anyof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_anyof_request_body/test_post.py index e383c585ab0..485b92f3d52 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_anyof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_anyof_request_body/test_post.py @@ -84,8 +84,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_items_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_items_request_body/test_post.py index 80312bd8615..583cc122941 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_items_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_items_request_body/test_post.py @@ -88,8 +88,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_not_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_not_request_body/test_post.py index dfe2ffb9c39..6c88e886e6d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_not_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_not_request_body/test_post.py @@ -84,8 +84,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_oneof_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_oneof_request_body/test_post.py index 1742acb9bd5..8b8fe44e59e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_oneof_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_oneof_request_body/test_post.py @@ -84,8 +84,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_property_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_property_request_body/test_post.py index 6a942f23666..e6ba0197a92 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_property_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_ref_in_property_request_body/test_post.py @@ -90,8 +90,5 @@ def test_property_named_ref_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_default_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_default_validation_request_body/test_post.py index 1d34169b4d9..425bb90046a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_default_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_default_validation_request_body/test_post.py @@ -65,8 +65,5 @@ def test_not_required_by_default_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_validation_request_body/test_post.py index 25f77f24ed4..31477e39266 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_validation_request_body/test_post.py @@ -175,8 +175,5 @@ def test_non_present_required_property_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_empty_array_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_empty_array_request_body/test_post.py index a59736649c9..d8b4c173a9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_empty_array_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_empty_array_request_body/test_post.py @@ -65,8 +65,5 @@ def test_property_not_required_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_escaped_characters_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_escaped_characters_request_body/test_post.py index a1e8074793c..4cfd83bb263 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_escaped_characters_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_required_with_escaped_characters_request_body/test_post.py @@ -96,8 +96,5 @@ def test_object_with_all_properties_present_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_simple_enum_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_simple_enum_validation_request_body/test_post.py index 6c7024f1453..ec5d44598b2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_simple_enum_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_simple_enum_validation_request_body/test_post.py @@ -78,8 +78,5 @@ def test_one_of_the_enum_is_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_string_type_matches_strings_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_string_type_matches_strings_request_body/test_post.py index 39d0f95e46f..b711cfa41be 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_string_type_matches_strings_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_string_type_matches_strings_request_body/test_post.py @@ -210,8 +210,5 @@ def test_a_string_is_a_string_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/test_post.py index 99fc263b7c3..f460a761c5e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_request_body/test_post.py @@ -115,8 +115,5 @@ def test_an_explicit_property_value_is_checked_against_maximum_failing_fails(sel ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_false_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_false_validation_request_body/test_post.py index 1fcf9a7a376..34de04df3da 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_false_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_false_validation_request_body/test_post.py @@ -600,8 +600,5 @@ def test_unique_heterogeneous_types_are_valid_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_validation_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_validation_request_body/test_post.py index a59892b632f..01b84942bec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_validation_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uniqueitems_validation_request_body/test_post.py @@ -841,8 +841,5 @@ def test_non_unique_array_of_integers_is_invalid_fails(self): ) self.api.post(body=body) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_format_request_body/test_post.py index 95582779708..6e05bad7de0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_reference_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_reference_format_request_body/test_post.py index eecc8ce8bd5..bfd3c0a6d86 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_reference_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_reference_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_template_format_request_body/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_template_format_request_body/test_post.py index 30b43b163e4..26be02c72ff 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_template_format_request_body/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_request_body_post_uri_template_format_request_body/test_post.py @@ -216,8 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): assert isinstance(api_response.response, urllib3.HTTPResponse) assert isinstance(api_response.body, schemas.Unset) - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py index cca67265f5a..d8e86f68941 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_allows_a_schema_which_should_validate_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_no_additional_properties_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_additional_invalid_property_is_invalid_fails(self): # an additional invalid property is invalid accept_content_type = 'application/json' @@ -96,6 +97,7 @@ def test_an_additional_invalid_property_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_additional_valid_property_is_valid_passes(self): # an additional valid property is valid accept_content_type = 'application/json' @@ -133,7 +135,5 @@ def test_an_additional_valid_property_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py index 3fd9cb27553..cdb77156234 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_are_allowed_by_default_response_body_for_content_types/test_post.py @@ -71,7 +71,5 @@ def test_additional_properties_are_allowed_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py index df9971fa574..21de7343619 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_can_exist_by_itself_response_body_for_content_types/test_post.py @@ -60,6 +60,7 @@ def test_an_additional_invalid_property_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_additional_valid_property_is_valid_passes(self): # an additional valid property is valid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_an_additional_valid_property_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py index e791cc5a1d8..71bde83a489 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_additionalproperties_should_not_look_in_applicators_response_body_for_content_types/test_post.py @@ -62,6 +62,7 @@ def test_properties_defined_in_allof_are_not_examined_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_valid_test_case_passes(self): # valid test case accept_content_type = 'application/json' @@ -97,7 +98,5 @@ def test_valid_test_case_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py index 5060d92a261..5aa1a4e5e42 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_combined_with_anyof_oneof_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_allof_true_anyof_false_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_false_anyof_false_oneof_true_fails(self): # allOf: false, anyOf: false, oneOf: true accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_allof_false_anyof_false_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_false_anyof_true_oneof_true_fails(self): # allOf: false, anyOf: true, oneOf: true accept_content_type = 'application/json' @@ -103,6 +105,7 @@ def test_allof_false_anyof_true_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_true_anyof_true_oneof_false_fails(self): # allOf: true, anyOf: true, oneOf: false accept_content_type = 'application/json' @@ -126,6 +129,7 @@ def test_allof_true_anyof_true_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_true_anyof_true_oneof_true_passes(self): # allOf: true, anyOf: true, oneOf: true accept_content_type = 'application/json' @@ -155,6 +159,7 @@ def test_allof_true_anyof_true_oneof_true_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_allof_true_anyof_false_oneof_true_fails(self): # allOf: true, anyOf: false, oneOf: true accept_content_type = 'application/json' @@ -178,6 +183,7 @@ def test_allof_true_anyof_false_oneof_true_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_false_anyof_true_oneof_false_fails(self): # allOf: false, anyOf: true, oneOf: false accept_content_type = 'application/json' @@ -201,6 +207,7 @@ def test_allof_false_anyof_true_oneof_false_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_allof_false_anyof_false_oneof_false_fails(self): # allOf: false, anyOf: false, oneOf: false accept_content_type = 'application/json' @@ -225,7 +232,5 @@ def test_allof_false_anyof_false_oneof_false_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py index c99cda94058..ef441694dca 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_response_body_for_content_types/test_post.py @@ -68,6 +68,7 @@ def test_allof_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_mismatch_first_fails(self): # mismatch first accept_content_type = 'application/json' @@ -94,6 +95,7 @@ def test_mismatch_first_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_second_fails(self): # mismatch second accept_content_type = 'application/json' @@ -120,6 +122,7 @@ def test_mismatch_second_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_wrong_type_fails(self): # wrong type accept_content_type = 'application/json' @@ -149,7 +152,5 @@ def test_wrong_type_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py index 71976748f08..b100891f460 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_simple_types_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_mismatch_one_fails(self): # mismatch one accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_mismatch_one_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py index fc0e8a164c6..76b3014de56 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_base_schema_response_body_for_content_types/test_post.py @@ -70,6 +70,7 @@ def test_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_mismatch_first_allof_fails(self): # mismatch first allOf accept_content_type = 'application/json' @@ -98,6 +99,7 @@ def test_mismatch_first_allof_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -126,6 +128,7 @@ def test_mismatch_base_schema_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_both_fails(self): # mismatch both accept_content_type = 'application/json' @@ -152,6 +155,7 @@ def test_mismatch_both_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_second_allof_fails(self): # mismatch second allOf accept_content_type = 'application/json' @@ -181,7 +185,5 @@ def test_mismatch_second_allof_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py index 4476552a6be..0fb2be23722 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_one_empty_schema_response_body_for_content_types/test_post.py @@ -64,7 +64,5 @@ def test_any_data_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py index 75754e00938..5dedc1dcabd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_first_empty_schema_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_string_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_number_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py index 4bc2909e05d..25bcc7790ba 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_the_last_empty_schema_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_string_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_number_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py index 3b298f46f5f..dc2d90ace45 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_allof_with_two_empty_schemas_response_body_for_content_types/test_post.py @@ -64,7 +64,5 @@ def test_any_data_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py index 61789db73f9..3eb043a3e9f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_complex_types_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_second_anyof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_neither_anyof_valid_complex_fails(self): # neither anyOf valid (complex) accept_content_type = 'application/json' @@ -94,6 +95,7 @@ def test_neither_anyof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_anyof_valid_complex_passes(self): # both anyOf valid (complex) accept_content_type = 'application/json' @@ -128,6 +130,7 @@ def test_both_anyof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_first_anyof_valid_complex_passes(self): # first anyOf valid (complex) accept_content_type = 'application/json' @@ -161,7 +164,5 @@ def test_first_anyof_valid_complex_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py index 7f4f3900b7f..08bd355c798 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_second_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_neither_anyof_valid_fails(self): # neither anyOf valid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_neither_anyof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_anyof_valid_passes(self): # both anyOf valid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_both_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_first_anyof_valid_passes(self): # first anyOf valid accept_content_type = 'application/json' @@ -145,7 +148,5 @@ def test_first_anyof_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py index 93798dcd87a..5432c50f63a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_base_schema_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_one_anyof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_both_anyof_invalid_fails(self): # both anyOf invalid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_both_anyof_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -110,7 +112,5 @@ def test_mismatch_base_schema_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py index 8a2dd370fad..b97961d22b8 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_anyof_with_one_empty_schema_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_string_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_number_is_valid_passes(self): # number is valid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_number_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py index 4fa7af4f8ac..96f074703fe 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_array_type_matches_arrays_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_a_float_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_boolean_is_not_an_array_fails(self): # a boolean is not an array accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_a_boolean_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_an_array_fails(self): # null is not an array accept_content_type = 'application/json' @@ -103,6 +105,7 @@ def test_null_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_object_is_not_an_array_fails(self): # an object is not an array accept_content_type = 'application/json' @@ -127,6 +130,7 @@ def test_an_object_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_not_an_array_fails(self): # a string is not an array accept_content_type = 'application/json' @@ -150,6 +154,7 @@ def test_a_string_is_not_an_array_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_array_is_an_array_passes(self): # an array is an array accept_content_type = 'application/json' @@ -180,6 +185,7 @@ def test_an_array_is_an_array_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_integer_is_not_an_array_fails(self): # an integer is not an array accept_content_type = 'application/json' @@ -204,7 +210,5 @@ def test_an_integer_is_not_an_array_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py index 28e96dcbb20..0caafea4c03 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_boolean_type_matches_booleans_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_an_empty_string_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_float_is_not_a_boolean_fails(self): # a float is not a boolean accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_a_float_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_a_boolean_fails(self): # null is not a boolean accept_content_type = 'application/json' @@ -103,6 +105,7 @@ def test_null_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_zero_is_not_a_boolean_fails(self): # zero is not a boolean accept_content_type = 'application/json' @@ -126,6 +129,7 @@ def test_zero_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_array_is_not_a_boolean_fails(self): # an array is not a boolean accept_content_type = 'application/json' @@ -150,6 +154,7 @@ def test_an_array_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_not_a_boolean_fails(self): # a string is not a boolean accept_content_type = 'application/json' @@ -173,6 +178,7 @@ def test_a_string_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_false_is_a_boolean_passes(self): # false is a boolean accept_content_type = 'application/json' @@ -202,6 +208,7 @@ def test_false_is_a_boolean_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_integer_is_not_a_boolean_fails(self): # an integer is not a boolean accept_content_type = 'application/json' @@ -225,6 +232,7 @@ def test_an_integer_is_not_a_boolean_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_true_is_a_boolean_passes(self): # true is a boolean accept_content_type = 'application/json' @@ -254,6 +262,7 @@ def test_true_is_a_boolean_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_object_is_not_a_boolean_fails(self): # an object is not a boolean accept_content_type = 'application/json' @@ -279,7 +288,5 @@ def test_an_object_is_not_a_boolean_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py index 5a7dcaf5faa..0772f4c4ec5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_int_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_int_by_int_fail_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_int_by_int_passes(self): # int by int accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_int_by_int_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -116,7 +118,5 @@ def test_ignores_non_numbers_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py index f708e7fff38..3cf1e961293 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_number_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_45_is_multiple_of15_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_35_is_not_multiple_of15_fails(self): # 35 is not multiple of 1.5 accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_35_is_not_multiple_of15_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_zero_is_multiple_of_anything_passes(self): # zero is multiple of anything accept_content_type = 'application/json' @@ -116,7 +118,5 @@ def test_zero_is_multiple_of_anything_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py index 765eaeb62de..d9e2c9e6bcc 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_by_small_number_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_000751_is_not_multiple_of00001_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_00075_is_multiple_of00001_passes(self): # 0.0075 is multiple of 0.0001 accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_00075_is_multiple_of00001_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py index 71e1d565543..5a4425de622 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_date_time_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py index fc53bcc0e96..81a9b56cec9 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_email_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py index 0c400eafa91..7ba06cbfaa2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with0_does_not_match_false_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_integer_zero_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_float_zero_is_valid_passes(self): # float zero is valid accept_content_type = 'application/json' @@ -92,6 +93,7 @@ def test_float_zero_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_false_is_invalid_fails(self): # false is invalid accept_content_type = 'application/json' @@ -116,7 +118,5 @@ def test_false_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py index 553b062e869..4979e31237b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with1_does_not_match_true_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_true_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_integer_one_is_valid_passes(self): # integer one is valid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_integer_one_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_float_one_is_valid_passes(self): # float one is valid accept_content_type = 'application/json' @@ -116,7 +118,5 @@ def test_float_one_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py index b622c322a9f..366fb170768 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_escaped_characters_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_member2_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_member1_is_valid_passes(self): # member 1 is valid accept_content_type = 'application/json' @@ -92,6 +93,7 @@ def test_member1_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_another_string_is_invalid_fails(self): # another string is invalid accept_content_type = 'application/json' @@ -116,7 +118,5 @@ def test_another_string_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py index dc5971a36c7..6a339a4cf96 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_false_does_not_match0_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_false_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_float_zero_is_invalid_fails(self): # float zero is invalid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_float_zero_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_integer_zero_is_invalid_fails(self): # integer zero is invalid accept_content_type = 'application/json' @@ -110,7 +112,5 @@ def test_integer_zero_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py index 647e9e25b70..68595cd2591 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enum_with_true_does_not_match1_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_float_one_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_true_is_valid_passes(self): # true is valid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_true_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_integer_one_is_invalid_fails(self): # integer one is invalid accept_content_type = 'application/json' @@ -110,7 +112,5 @@ def test_integer_one_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py index c037eeb4aa7..2a6a8745e31 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_enums_in_properties_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_missing_optional_property_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_wrong_foo_value_fails(self): # wrong foo value accept_content_type = 'application/json' @@ -94,6 +95,7 @@ def test_wrong_foo_value_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_properties_are_valid_passes(self): # both properties are valid accept_content_type = 'application/json' @@ -128,6 +130,7 @@ def test_both_properties_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_wrong_bar_value_fails(self): # wrong bar value accept_content_type = 'application/json' @@ -156,6 +159,7 @@ def test_wrong_bar_value_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_missing_all_properties_is_invalid_fails(self): # missing all properties is invalid accept_content_type = 'application/json' @@ -180,6 +184,7 @@ def test_missing_all_properties_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_missing_required_property_is_invalid_fails(self): # missing required property is invalid accept_content_type = 'application/json' @@ -207,7 +212,5 @@ def test_missing_required_property_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py index 2258af80b34..d50917eec0a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_forbidden_property_response_body_for_content_types/test_post.py @@ -62,6 +62,7 @@ def test_property_present_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_property_absent_passes(self): # property absent accept_content_type = 'application/json' @@ -97,7 +98,5 @@ def test_property_absent_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py index 9be068208a5..b8e39f445b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_hostname_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py index b61b6541d18..f1d2cf996d5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_integer_type_matches_integers_response_body_for_content_types/test_post.py @@ -58,6 +58,7 @@ def test_an_object_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_not_an_integer_fails(self): # a string is not an integer accept_content_type = 'application/json' @@ -81,6 +82,7 @@ def test_a_string_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_an_integer_fails(self): # null is not an integer accept_content_type = 'application/json' @@ -104,6 +106,7 @@ def test_null_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_float_with_zero_fractional_part_is_an_integer_passes(self): # a float with zero fractional part is an integer accept_content_type = 'application/json' @@ -133,6 +136,7 @@ def test_a_float_with_zero_fractional_part_is_an_integer_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_float_is_not_an_integer_fails(self): # a float is not an integer accept_content_type = 'application/json' @@ -156,6 +160,7 @@ def test_a_float_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_boolean_is_not_an_integer_fails(self): # a boolean is not an integer accept_content_type = 'application/json' @@ -179,6 +184,7 @@ def test_a_boolean_is_not_an_integer_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_integer_is_an_integer_passes(self): # an integer is an integer accept_content_type = 'application/json' @@ -208,6 +214,7 @@ def test_an_integer_is_an_integer_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_string_is_still_not_an_integer_even_if_it_looks_like_one_fails(self): # a string is still not an integer, even if it looks like one accept_content_type = 'application/json' @@ -231,6 +238,7 @@ def test_a_string_is_still_not_an_integer_even_if_it_looks_like_one_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_array_is_not_an_integer_fails(self): # an array is not an integer accept_content_type = 'application/json' @@ -256,7 +264,5 @@ def test_an_array_is_not_an_integer_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py index 8088b105991..75f5ac5cbb4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_instance_should_not_raise_error_when_float_division_inf_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_always_invalid_but_naive_implementations_may_raise_an_overflow_error_fa content_type=None, accept_content_type=accept_content_type, ) + def test_valid_integer_with_multipleof_float_passes(self): # valid integer with multipleOf float accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_valid_integer_with_multipleof_float_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py index 4592fc813ca..8b54dc720f4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_invalid_string_value_for_default_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_valid_when_property_is_specified_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_still_valid_when_the_invalid_default_is_used_passes(self): # still valid when the invalid default is used accept_content_type = 'application/json' @@ -97,7 +98,5 @@ def test_still_valid_when_the_invalid_default_is_used_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py index b9ffbdfab05..98540a202e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv4_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py index 361a7b4876b..5b8ed823069 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ipv6_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py index c1b54944a0b..ed2a2924b03 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_json_pointer_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py index 7fe394cdeb8..f8c0e1bb25e 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_below_the_maximum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_boundary_point_is_valid_passes(self): # boundary point is valid accept_content_type = 'application/json' @@ -92,6 +93,7 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_above_the_maximum_is_invalid_fails(self): # above the maximum is invalid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_above_the_maximum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -145,7 +148,5 @@ def test_ignores_non_numbers_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py index 26bcaf99db7..945809b4584 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maximum_validation_with_unsigned_integer_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_below_the_maximum_is_invalid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_above_the_maximum_is_invalid_fails(self): # above the maximum is invalid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_above_the_maximum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_boundary_point_integer_is_valid_passes(self): # boundary point integer is valid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_boundary_point_integer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_boundary_point_float_is_valid_passes(self): # boundary point float is valid accept_content_type = 'application/json' @@ -145,7 +148,5 @@ def test_boundary_point_float_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py index d101a2525d7..d608520934a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxitems_validation_response_body_for_content_types/test_post.py @@ -61,6 +61,7 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_non_arrays_passes(self): # ignores non-arrays accept_content_type = 'application/json' @@ -90,6 +91,7 @@ def test_ignores_non_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -121,6 +123,7 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -154,7 +157,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py index 37ef06a7ea9..6fa6bc826a3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxlength_validation_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_non_strings_passes(self): # ignores non-strings accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_ignores_non_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_two_supplementary_unicode_code_points_is_long_enough_passes(self): # two supplementary Unicode code points is long enough accept_content_type = 'application/json' @@ -144,6 +147,7 @@ def test_two_supplementary_unicode_code_points_is_long_enough_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -174,7 +178,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py index 01b109e0ed6..d134e6b9db6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties0_means_the_object_is_empty_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_no_properties_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_one_property_is_invalid_fails(self): # one property is invalid accept_content_type = 'application/json' @@ -91,7 +92,5 @@ def test_one_property_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py index e374b943cc9..99bf5371907 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_maxproperties_validation_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_too_long_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_arrays_passes(self): # ignores arrays accept_content_type = 'application/json' @@ -97,6 +98,7 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -126,6 +128,7 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -155,6 +158,7 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_shorter_is_valid_passes(self): # shorter is valid accept_content_type = 'application/json' @@ -187,6 +191,7 @@ def test_shorter_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -222,7 +227,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py index 5d0658ebdfc..49098873287 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_below_the_minimum_is_invalid_fails(self): # below the minimum is invalid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_above_the_minimum_is_valid_passes(self): # above the minimum is valid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -145,7 +148,5 @@ def test_ignores_non_numbers_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py index ea5b03b9a7e..5b58545cf28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minimum_validation_with_signed_integer_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_boundary_point_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_positive_above_the_minimum_is_valid_passes(self): # positive above the minimum is valid accept_content_type = 'application/json' @@ -92,6 +93,7 @@ def test_positive_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_int_below_the_minimum_is_invalid_fails(self): # int below the minimum is invalid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_int_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_float_below_the_minimum_is_invalid_fails(self): # float below the minimum is invalid accept_content_type = 'application/json' @@ -138,6 +141,7 @@ def test_float_below_the_minimum_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_boundary_point_with_float_is_valid_passes(self): # boundary point with float is valid accept_content_type = 'application/json' @@ -167,6 +171,7 @@ def test_boundary_point_with_float_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_negative_above_the_minimum_is_valid_passes(self): # negative above the minimum is valid accept_content_type = 'application/json' @@ -196,6 +201,7 @@ def test_negative_above_the_minimum_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_non_numbers_passes(self): # ignores non-numbers accept_content_type = 'application/json' @@ -226,7 +232,5 @@ def test_ignores_non_numbers_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py index 6a3a645ab38..6299a1e45ec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minitems_validation_response_body_for_content_types/test_post.py @@ -58,6 +58,7 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_non_arrays_passes(self): # ignores non-arrays accept_content_type = 'application/json' @@ -87,6 +88,7 @@ def test_ignores_non_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -119,6 +121,7 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -151,7 +154,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py index 473e6428a45..9f6f787ed14 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minlength_validation_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_one_supplementary_unicode_code_point_is_not_long_enough_fails(self): # one supplementary Unicode code point is not long enough accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_one_supplementary_unicode_code_point_is_not_long_enough_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -109,6 +111,7 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_non_strings_passes(self): # ignores non-strings accept_content_type = 'application/json' @@ -138,6 +141,7 @@ def test_ignores_non_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -168,7 +172,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py index 8f097531a8e..660a2fdbef1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_minproperties_validation_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_too_short_is_invalid_fails(self): # too short is invalid accept_content_type = 'application/json' @@ -117,6 +119,7 @@ def test_too_short_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -146,6 +149,7 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_longer_is_valid_passes(self): # longer is valid accept_content_type = 'application/json' @@ -180,6 +184,7 @@ def test_longer_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_exact_length_is_valid_passes(self): # exact length is valid accept_content_type = 'application/json' @@ -213,7 +218,5 @@ def test_exact_length_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py index a600f890f28..d4764c4c033 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_allof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_null_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py index b9bd377545a..1b7ab8d6629 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_anyof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_null_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py index 98cdaf91c3a..67c3d00d6cd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_items_response_body_for_content_types/test_post.py @@ -92,6 +92,7 @@ def test_valid_nested_array_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_nested_array_with_invalid_type_fails(self): # nested array with invalid type accept_content_type = 'application/json' @@ -144,6 +145,7 @@ def test_nested_array_with_invalid_type_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_not_deep_enough_fails(self): # not deep enough accept_content_type = 'application/json' @@ -191,7 +193,5 @@ def test_not_deep_enough_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py index 6d40c4133c4..deec92dfdec 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nested_oneof_to_check_validation_semantics_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_anything_non_null_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_valid_passes(self): # null is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_null_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py index 5909126e30b..4c289e16ab0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_more_complex_schema_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_other_match_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_mismatch_fails(self): # mismatch accept_content_type = 'application/json' @@ -92,6 +93,7 @@ def test_mismatch_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_match_passes(self): # match accept_content_type = 'application/json' @@ -122,7 +124,5 @@ def test_match_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py index 4b9b19300bd..a8a6b14a07f 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_not_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_allowed_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_disallowed_fails(self): # disallowed accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_disallowed_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py index 09663e1f537..cea84e1557b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_nul_characters_in_strings_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_match_string_with_nul_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_do_not_match_string_lacking_nul_fails(self): # do not match string lacking nul accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_do_not_match_string_lacking_nul_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py index 870ed533174..5d6917a1c79 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_null_type_matches_only_the_null_object_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_a_float_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_object_is_not_null_fails(self): # an object is not null accept_content_type = 'application/json' @@ -81,6 +82,7 @@ def test_an_object_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_false_is_not_null_fails(self): # false is not null accept_content_type = 'application/json' @@ -104,6 +106,7 @@ def test_false_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_integer_is_not_null_fails(self): # an integer is not null accept_content_type = 'application/json' @@ -127,6 +130,7 @@ def test_an_integer_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_true_is_not_null_fails(self): # true is not null accept_content_type = 'application/json' @@ -150,6 +154,7 @@ def test_true_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_zero_is_not_null_fails(self): # zero is not null accept_content_type = 'application/json' @@ -173,6 +178,7 @@ def test_zero_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_empty_string_is_not_null_fails(self): # an empty string is not null accept_content_type = 'application/json' @@ -196,6 +202,7 @@ def test_an_empty_string_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_null_passes(self): # null is null accept_content_type = 'application/json' @@ -225,6 +232,7 @@ def test_null_is_null_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_array_is_not_null_fails(self): # an array is not null accept_content_type = 'application/json' @@ -249,6 +257,7 @@ def test_an_array_is_not_null_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_not_null_fails(self): # a string is not null accept_content_type = 'application/json' @@ -273,7 +282,5 @@ def test_a_string_is_not_null_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py index 16e9d8376d6..7a9e9d0eb26 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_number_type_matches_numbers_response_body_for_content_types/test_post.py @@ -58,6 +58,7 @@ def test_an_array_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_a_number_fails(self): # null is not a number accept_content_type = 'application/json' @@ -81,6 +82,7 @@ def test_null_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_object_is_not_a_number_fails(self): # an object is not a number accept_content_type = 'application/json' @@ -105,6 +107,7 @@ def test_an_object_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_boolean_is_not_a_number_fails(self): # a boolean is not a number accept_content_type = 'application/json' @@ -128,6 +131,7 @@ def test_a_boolean_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_float_is_a_number_passes(self): # a float is a number accept_content_type = 'application/json' @@ -157,6 +161,7 @@ def test_a_float_is_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_string_is_still_not_a_number_even_if_it_looks_like_one_fails(self): # a string is still not a number, even if it looks like one accept_content_type = 'application/json' @@ -180,6 +185,7 @@ def test_a_string_is_still_not_a_number_even_if_it_looks_like_one_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_not_a_number_fails(self): # a string is not a number accept_content_type = 'application/json' @@ -203,6 +209,7 @@ def test_a_string_is_not_a_number_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_integer_is_a_number_passes(self): # an integer is a number accept_content_type = 'application/json' @@ -232,6 +239,7 @@ def test_an_integer_is_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_float_with_zero_fractional_part_is_a_number_and_an_integer_passes(self): # a float with zero fractional part is a number (and an integer) accept_content_type = 'application/json' @@ -262,7 +270,5 @@ def test_a_float_with_zero_fractional_part_is_a_number_and_an_integer_passes(sel ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py index 2e98e19e756..3ab15b953db 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_properties_validation_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_one_property_invalid_is_invalid_fails(self): # one property invalid is invalid accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_one_property_invalid_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_properties_present_and_valid_is_valid_passes(self): # both properties present and valid is valid accept_content_type = 'application/json' @@ -156,6 +159,7 @@ def test_both_properties_present_and_valid_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_doesn_t_invalidate_other_properties_passes(self): # doesn't invalidate other properties accept_content_type = 'application/json' @@ -189,6 +193,7 @@ def test_doesn_t_invalidate_other_properties_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_both_properties_invalid_is_invalid_fails(self): # both properties invalid is invalid accept_content_type = 'application/json' @@ -220,7 +225,5 @@ def test_both_properties_invalid_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py index 53f5bffdec3..f2f7fad1260 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_object_type_matches_objects_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_a_float_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_an_object_fails(self): # null is not an object accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_null_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_array_is_not_an_object_fails(self): # an array is not an object accept_content_type = 'application/json' @@ -104,6 +106,7 @@ def test_an_array_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_object_is_an_object_passes(self): # an object is an object accept_content_type = 'application/json' @@ -134,6 +137,7 @@ def test_an_object_is_an_object_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_string_is_not_an_object_fails(self): # a string is not an object accept_content_type = 'application/json' @@ -157,6 +161,7 @@ def test_a_string_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_integer_is_not_an_object_fails(self): # an integer is not an object accept_content_type = 'application/json' @@ -180,6 +185,7 @@ def test_an_integer_is_not_an_object_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_boolean_is_not_an_object_fails(self): # a boolean is not an object accept_content_type = 'application/json' @@ -204,7 +210,5 @@ def test_a_boolean_is_not_an_object_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py index 49dad931fe7..165edb9f1d2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_complex_types_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_first_oneof_valid_complex_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_neither_oneof_valid_complex_fails(self): # neither oneOf valid (complex) accept_content_type = 'application/json' @@ -94,6 +95,7 @@ def test_neither_oneof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_oneof_valid_complex_fails(self): # both oneOf valid (complex) accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_both_oneof_valid_complex_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_second_oneof_valid_complex_passes(self): # second oneOf valid (complex) accept_content_type = 'application/json' @@ -155,7 +158,5 @@ def test_second_oneof_valid_complex_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py index a04dcd282d5..6473234a77c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_response_body_for_content_types/test_post.py @@ -63,6 +63,7 @@ def test_second_oneof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_both_oneof_valid_fails(self): # both oneOf valid accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_both_oneof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_first_oneof_valid_passes(self): # first oneOf valid accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_first_oneof_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_neither_oneof_valid_fails(self): # neither oneOf valid accept_content_type = 'application/json' @@ -139,7 +142,5 @@ def test_neither_oneof_valid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py index ee4e22539dc..dc160357343 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_base_schema_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_both_oneof_valid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_mismatch_base_schema_fails(self): # mismatch base schema accept_content_type = 'application/json' @@ -80,6 +81,7 @@ def test_mismatch_base_schema_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_one_oneof_valid_passes(self): # one oneOf valid accept_content_type = 'application/json' @@ -110,7 +112,5 @@ def test_one_oneof_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py index 6329bf31f44..6a248441096 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_empty_schema_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_both_valid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_one_valid_valid_passes(self): # one valid - valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_one_valid_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py index d68107e8f20..f2524ea2378 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_oneof_with_required_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_both_valid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_both_invalid_invalid_fails(self): # both invalid - invalid accept_content_type = 'application/json' @@ -90,6 +91,7 @@ def test_both_invalid_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_first_valid_valid_passes(self): # first valid - valid accept_content_type = 'application/json' @@ -124,6 +126,7 @@ def test_first_valid_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_second_valid_valid_passes(self): # second valid - valid accept_content_type = 'application/json' @@ -159,7 +162,5 @@ def test_second_valid_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py index f532aa14de8..9ea99ff676c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_is_not_anchored_response_body_for_content_types/test_post.py @@ -64,7 +64,5 @@ def test_matches_a_substring_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py index 2cd922e1a92..849cd320f9d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_pattern_validation_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_objects_passes(self): # ignores objects accept_content_type = 'application/json' @@ -94,6 +95,7 @@ def test_ignores_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_null_passes(self): # ignores null accept_content_type = 'application/json' @@ -123,6 +125,7 @@ def test_ignores_null_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_floats_passes(self): # ignores floats accept_content_type = 'application/json' @@ -152,6 +155,7 @@ def test_ignores_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_non_matching_pattern_is_invalid_fails(self): # a non-matching pattern is invalid accept_content_type = 'application/json' @@ -175,6 +179,7 @@ def test_a_non_matching_pattern_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_ignores_booleans_passes(self): # ignores booleans accept_content_type = 'application/json' @@ -204,6 +209,7 @@ def test_ignores_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_matching_pattern_is_valid_passes(self): # a matching pattern is valid accept_content_type = 'application/json' @@ -233,6 +239,7 @@ def test_a_matching_pattern_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_integers_passes(self): # ignores integers accept_content_type = 'application/json' @@ -263,7 +270,5 @@ def test_ignores_integers_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py index 81fdb1ec3ce..800b70d8536 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_properties_with_escaped_characters_response_body_for_content_types/test_post.py @@ -76,6 +76,7 @@ def test_object_with_all_numbers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_object_with_strings_is_invalid_fails(self): # object with strings is invalid accept_content_type = 'application/json' @@ -113,7 +114,5 @@ def test_object_with_strings_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py index 3de1df959a2..d4728efb79a 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_property_named_ref_that_is_not_a_reference_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py index 2a156f05e5c..b7f60558ac4 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_additionalproperties_response_body_for_content_types/test_post.py @@ -69,6 +69,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -99,7 +100,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py index 803d23d482d..b7ac76a7ee3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_allof_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py index f6042af0cff..69690d3e8bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_anyof_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py index 24fe1214e2a..10131ddba28 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_items_response_body_for_content_types/test_post.py @@ -68,6 +68,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -97,7 +98,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py index 377fd786f6a..f85a876772b 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_not_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py index 72a6b1d9e46..778964c2dc2 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_oneof_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -93,7 +94,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py index 930022831ca..ce7e72ef9e5 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_ref_in_property_response_body_for_content_types/test_post.py @@ -69,6 +69,7 @@ def test_property_named_ref_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_property_named_ref_invalid_fails(self): # property named $ref invalid accept_content_type = 'application/json' @@ -99,7 +100,5 @@ def test_property_named_ref_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py index 27b4c314ffd..90340f8c37c 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_default_validation_response_body_for_content_types/test_post.py @@ -65,7 +65,5 @@ def test_not_required_by_default_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py index ba8d9034f9a..d100f9d83ed 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_validation_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_ignores_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_present_required_property_is_valid_passes(self): # present required property is valid accept_content_type = 'application/json' @@ -96,6 +97,7 @@ def test_present_required_property_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_other_non_objects_passes(self): # ignores other non-objects accept_content_type = 'application/json' @@ -125,6 +127,7 @@ def test_ignores_other_non_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_ignores_strings_passes(self): # ignores strings accept_content_type = 'application/json' @@ -154,6 +157,7 @@ def test_ignores_strings_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_present_required_property_is_invalid_fails(self): # non-present required property is invalid accept_content_type = 'application/json' @@ -181,7 +185,5 @@ def test_non_present_required_property_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py index 25de347324a..0ec7bd2ce94 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_empty_array_response_body_for_content_types/test_post.py @@ -65,7 +65,5 @@ def test_property_not_required_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py index d266352279d..eb98882f499 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_required_with_escaped_characters_response_body_for_content_types/test_post.py @@ -62,6 +62,7 @@ def test_object_with_some_properties_missing_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_object_with_all_properties_present_is_valid_passes(self): # object with all properties present is valid accept_content_type = 'application/json' @@ -105,7 +106,5 @@ def test_object_with_all_properties_present_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py index d20db774b3c..c6f9c5c03a6 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_simple_enum_validation_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_something_else_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_one_of_the_enum_is_valid_passes(self): # one of the enum is valid accept_content_type = 'application/json' @@ -87,7 +88,5 @@ def test_one_of_the_enum_is_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py index 87da0340220..2f5b0a609c1 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_string_type_matches_strings_response_body_for_content_types/test_post.py @@ -57,6 +57,7 @@ def test_1_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_still_a_string_even_if_it_looks_like_a_number_passes(self): # a string is still a string, even if it looks like a number accept_content_type = 'application/json' @@ -86,6 +87,7 @@ def test_a_string_is_still_a_string_even_if_it_looks_like_a_number_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_empty_string_is_still_a_string_passes(self): # an empty string is still a string accept_content_type = 'application/json' @@ -115,6 +117,7 @@ def test_an_empty_string_is_still_a_string_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_float_is_not_a_string_fails(self): # a float is not a string accept_content_type = 'application/json' @@ -138,6 +141,7 @@ def test_a_float_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_object_is_not_a_string_fails(self): # an object is not a string accept_content_type = 'application/json' @@ -162,6 +166,7 @@ def test_an_object_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_an_array_is_not_a_string_fails(self): # an array is not a string accept_content_type = 'application/json' @@ -186,6 +191,7 @@ def test_an_array_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_boolean_is_not_a_string_fails(self): # a boolean is not a string accept_content_type = 'application/json' @@ -209,6 +215,7 @@ def test_a_boolean_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_null_is_not_a_string_fails(self): # null is not a string accept_content_type = 'application/json' @@ -232,6 +239,7 @@ def test_null_is_not_a_string_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_a_string_is_a_string_passes(self): # a string is a string accept_content_type = 'application/json' @@ -262,7 +270,5 @@ def test_a_string_is_a_string_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py index bcf2da929eb..aee000b96b3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_the_default_keyword_does_not_do_anything_if_the_property_is_missing_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_missing_properties_are_not_filled_in_with_the_default_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_explicit_property_value_is_checked_against_maximum_passing_passes(self): # an explicit property value is checked against maximum (passing) accept_content_type = 'application/json' @@ -96,6 +97,7 @@ def test_an_explicit_property_value_is_checked_against_maximum_passing_passes(se _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_an_explicit_property_value_is_checked_against_maximum_failing_fails(self): # an explicit property value is checked against maximum (failing) accept_content_type = 'application/json' @@ -123,7 +125,5 @@ def test_an_explicit_property_value_is_checked_against_maximum_failing_fails(sel accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py index ffc7bf290ed..88a729dc8bd 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_false_validation_response_body_for_content_types/test_post.py @@ -66,6 +66,7 @@ def test_non_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_objects_is_valid_passes(self): # unique array of objects is valid accept_content_type = 'application/json' @@ -104,6 +105,7 @@ def test_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_nested_objects_is_valid_passes(self): # non-unique array of nested objects is valid accept_content_type = 'application/json' @@ -154,6 +156,7 @@ def test_non_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_objects_is_valid_passes(self): # non-unique array of objects is valid accept_content_type = 'application/json' @@ -192,6 +195,7 @@ def test_non_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_1_and_true_are_unique_passes(self): # 1 and true are unique accept_content_type = 'application/json' @@ -224,6 +228,7 @@ def test_1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_integers_is_valid_passes(self): # unique array of integers is valid accept_content_type = 'application/json' @@ -256,6 +261,7 @@ def test_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_arrays_is_valid_passes(self): # non-unique array of arrays is valid accept_content_type = 'application/json' @@ -292,6 +298,7 @@ def test_non_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_numbers_are_unique_if_mathematically_unequal_passes(self): # numbers are unique if mathematically unequal accept_content_type = 'application/json' @@ -325,6 +332,7 @@ def test_numbers_are_unique_if_mathematically_unequal_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_false_is_not_equal_to_zero_passes(self): # false is not equal to zero accept_content_type = 'application/json' @@ -357,6 +365,7 @@ def test_false_is_not_equal_to_zero_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_nested_objects_is_valid_passes(self): # unique array of nested objects is valid accept_content_type = 'application/json' @@ -407,6 +416,7 @@ def test_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_0_and_false_are_unique_passes(self): # 0 and false are unique accept_content_type = 'application/json' @@ -439,6 +449,7 @@ def test_0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_arrays_is_valid_passes(self): # unique array of arrays is valid accept_content_type = 'application/json' @@ -475,6 +486,7 @@ def test_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_true_is_not_equal_to_one_passes(self): # true is not equal to one accept_content_type = 'application/json' @@ -507,6 +519,7 @@ def test_true_is_not_equal_to_one_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_heterogeneous_types_are_valid_passes(self): # non-unique heterogeneous types are valid accept_content_type = 'application/json' @@ -547,6 +560,7 @@ def test_non_unique_heterogeneous_types_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_heterogeneous_types_are_valid_passes(self): # unique heterogeneous types are valid accept_content_type = 'application/json' @@ -586,7 +600,5 @@ def test_unique_heterogeneous_types_are_valid_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py index 957fcfa9cc9..d3780ec06d3 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uniqueitems_validation_response_body_for_content_types/test_post.py @@ -72,6 +72,7 @@ def test_unique_array_of_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_true_and_a1_are_unique_passes(self): # {"a": true} and {"a": 1} are unique accept_content_type = 'application/json' @@ -110,6 +111,7 @@ def test_a_true_and_a1_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_heterogeneous_types_are_invalid_fails(self): # non-unique heterogeneous types are invalid accept_content_type = 'application/json' @@ -144,6 +146,7 @@ def test_non_unique_heterogeneous_types_are_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_nested0_and_false_are_unique_passes(self): # nested [0] and [false] are unique accept_content_type = 'application/json' @@ -186,6 +189,7 @@ def test_nested0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_a_false_and_a0_are_unique_passes(self): # {"a": false} and {"a": 0} are unique accept_content_type = 'application/json' @@ -224,6 +228,7 @@ def test_a_false_and_a0_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_numbers_are_unique_if_mathematically_unequal_fails(self): # numbers are unique if mathematically unequal accept_content_type = 'application/json' @@ -251,6 +256,7 @@ def test_numbers_are_unique_if_mathematically_unequal_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_false_is_not_equal_to_zero_passes(self): # false is not equal to zero accept_content_type = 'application/json' @@ -283,6 +289,7 @@ def test_false_is_not_equal_to_zero_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_0_and_false_are_unique_passes(self): # [0] and [false] are unique accept_content_type = 'application/json' @@ -319,6 +326,7 @@ def test_0_and_false_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_arrays_is_valid_passes(self): # unique array of arrays is valid accept_content_type = 'application/json' @@ -355,6 +363,7 @@ def test_unique_array_of_arrays_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_nested_objects_is_invalid_fails(self): # non-unique array of nested objects is invalid accept_content_type = 'application/json' @@ -399,6 +408,7 @@ def test_non_unique_array_of_nested_objects_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_non_unique_array_of_more_than_two_integers_is_invalid_fails(self): # non-unique array of more than two integers is invalid accept_content_type = 'application/json' @@ -426,6 +436,7 @@ def test_non_unique_array_of_more_than_two_integers_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_true_is_not_equal_to_one_passes(self): # true is not equal to one accept_content_type = 'application/json' @@ -458,6 +469,7 @@ def test_true_is_not_equal_to_one_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_objects_are_non_unique_despite_key_order_fails(self): # objects are non-unique despite key order accept_content_type = 'application/json' @@ -494,6 +506,7 @@ def test_objects_are_non_unique_despite_key_order_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_unique_array_of_strings_is_valid_passes(self): # unique array of strings is valid accept_content_type = 'application/json' @@ -527,6 +540,7 @@ def test_unique_array_of_strings_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_1_and_true_are_unique_passes(self): # [1] and [true] are unique accept_content_type = 'application/json' @@ -563,6 +577,7 @@ def test_1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_different_objects_are_unique_passes(self): # different objects are unique accept_content_type = 'application/json' @@ -605,6 +620,7 @@ def test_different_objects_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_array_of_integers_is_valid_passes(self): # unique array of integers is valid accept_content_type = 'application/json' @@ -637,6 +653,7 @@ def test_unique_array_of_integers_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_more_than_two_arrays_is_invalid_fails(self): # non-unique array of more than two arrays is invalid accept_content_type = 'application/json' @@ -670,6 +687,7 @@ def test_non_unique_array_of_more_than_two_arrays_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_non_unique_array_of_objects_is_invalid_fails(self): # non-unique array of objects is invalid accept_content_type = 'application/json' @@ -702,6 +720,7 @@ def test_non_unique_array_of_objects_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_unique_array_of_nested_objects_is_valid_passes(self): # unique array of nested objects is valid accept_content_type = 'application/json' @@ -752,6 +771,7 @@ def test_unique_array_of_nested_objects_is_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_arrays_is_invalid_fails(self): # non-unique array of arrays is invalid accept_content_type = 'application/json' @@ -782,6 +802,7 @@ def test_non_unique_array_of_arrays_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_non_unique_array_of_strings_is_invalid_fails(self): # non-unique array of strings is invalid accept_content_type = 'application/json' @@ -809,6 +830,7 @@ def test_non_unique_array_of_strings_is_invalid_fails(self): content_type=None, accept_content_type=accept_content_type, ) + def test_nested1_and_true_are_unique_passes(self): # nested [1] and [true] are unique accept_content_type = 'application/json' @@ -851,6 +873,7 @@ def test_nested1_and_true_are_unique_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_unique_heterogeneous_types_are_valid_passes(self): # unique heterogeneous types are valid accept_content_type = 'application/json' @@ -890,6 +913,7 @@ def test_unique_heterogeneous_types_are_valid_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_non_unique_array_of_integers_is_invalid_fails(self): # non-unique array of integers is invalid accept_content_type = 'application/json' @@ -917,7 +941,5 @@ def test_non_unique_array_of_integers_is_invalid_fails(self): accept_content_type=accept_content_type, ) - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py index 8885bfc04a5..24aaa9f76c0 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py index 50c0b1d4e99..4aaf0faf173 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_reference_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py index a997ad049f3..0d7aace041d 100644 --- a/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py +++ b/samples/openapi3/client/3_0_3_unit_test/python/test/test_paths/test_response_body_post_uri_template_format_response_body_for_content_types/test_post.py @@ -64,6 +64,7 @@ def test_all_string_formats_ignore_objects_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_booleans_passes(self): # all string formats ignore booleans accept_content_type = 'application/json' @@ -93,6 +94,7 @@ def test_all_string_formats_ignore_booleans_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_integers_passes(self): # all string formats ignore integers accept_content_type = 'application/json' @@ -122,6 +124,7 @@ def test_all_string_formats_ignore_integers_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_floats_passes(self): # all string formats ignore floats accept_content_type = 'application/json' @@ -151,6 +154,7 @@ def test_all_string_formats_ignore_floats_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_arrays_passes(self): # all string formats ignore arrays accept_content_type = 'application/json' @@ -181,6 +185,7 @@ def test_all_string_formats_ignore_arrays_passes(self): _configuration=self._configuration ) assert api_response.body == deserialized_response_body + def test_all_string_formats_ignore_nulls_passes(self): # all string formats ignore nulls accept_content_type = 'application/json' @@ -211,7 +216,5 @@ def test_all_string_formats_ignore_nulls_passes(self): ) assert api_response.body == deserialized_response_body - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/test/test_paths/test_operators/test_post.py b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/test/test_paths/test_operators/test_post.py index 52f2f839ad4..18640b7aa2d 100644 --- a/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/test/test_paths/test_operators/test_post.py +++ b/samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/test/test_paths/test_operators/test_post.py @@ -34,6 +34,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py index 4e8b1c33fc6..53a29f2459c 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_another_fake_dummy/test_patch.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = patch.response_for_200.application_json - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py index c22a9853256..4eed6ab78ac 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_delete.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py index f5ec3b73469..044372ef9a6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_get.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py index 07c50c0e2a8..5798f1511e9 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_patch.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = patch.response_for_200.application_json - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py index 714554981c6..910c0695bf3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake/test_post.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py index be48f66d5ea..8e393a8735d 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_additional_properties_with_array_of_enums/test_get.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py index 792ba93a1e8..8e99ff7b70f 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_file_schema/test_put.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py index 24385ae529e..eb1768016b3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_body_with_query_params/test_put.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py index 1f1cb364763..2669b681484 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_case_sensitive_params/test_put.py @@ -34,6 +34,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py index aa816791025..dfea50878ac 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_classname_test/test_patch.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = patch.response_for_200.application_json - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py index a002c547aa5..5896e9b03b7 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_delete_coffee_id/test_delete.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py index 1865ee31607..f8a90ace8a2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_health/test_get.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py index a1b5801b829..2e69f23e9f2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_additional_properties/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py index 46d0211c1c9..f4013cd067e 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_inline_composition/test_post.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - response_body_schema = post.response_for_200.multipart_form_data - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py index 2c10640ca3f..4c63e28a1aa 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_form_data/test_get.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py index add02d961a0..c3d35ee5a47 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_patch/test_patch.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py index d3feb8d42c0..d97f4e0866a 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_json_with_charset/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json_charsetutf_8 - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py index fc11f501a40..972fec835e1 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_obj_in_query/test_get.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py index 73ff5c2859c..1a7663aa8e1 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_parameter_collisions1_abab_self_ab/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py index fb4b561c379..30dc9f50498 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_pet_id_upload_image_with_required_file/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py index ec5e15b0f2c..8e3d8278118 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_query_param_with_json_content_type/test_get.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py index 61edf55e3d7..527c281cc56 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_ref_obj_in_query/test_get.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py index 5f3372adbaa..338ca2ee2f8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_array_of_enums/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py index 82025e71da2..274eac69202 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_arraymodel/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py index bd893ffa09b..9763c5f5bb2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_boolean/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py index d6f747a875a..8b7e5b0bcaf 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_composed_one_of_number_with_validations/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py index bf80535a5a3..9499318dc45 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_enum/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py index bc3c0f7c482..b5ca3720bb7 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_mammal/test_post.py @@ -34,10 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py index c9c5cf0ee79..193e18e3add 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_number/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py index dfcf189a92e..96c6dbab684 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_object_model_with_ref_props/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py index 4327652184f..9572130a783 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_refs_string/test_post.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py index bcab7c96465..4cc2002e2f2 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_response_without_schema/test_get.py @@ -34,10 +34,5 @@ def tearDown(self): response_status = 200 - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py index e358588324b..683f36306c9 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_test_query_paramters/test_put.py @@ -34,6 +34,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py index 66a05db6494..eaff681cc85 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_download_file/test_post.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_octet_stream - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py index 16cdbb24541..91a632b3b10 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_file/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py index 4320914a246..8561eac9b00 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_fake_upload_files/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py index 03a8a8f6ffd..4a77ab5fbb3 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_foo/test_get.py @@ -34,8 +34,5 @@ def tearDown(self): response_status = 0 response_body_schema = get.response_for_default.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py index 5016a08a9c3..c21409c3740 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_post.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py index 903536c66d0..4e5a1548de4 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet/test_put.py @@ -35,10 +35,5 @@ def tearDown(self): response_status = 400 response_body = '' - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py index b65853a8f41..d6ab4df4c58 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_status/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py index 6d73f0f0e8e..fe682b024a8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_find_by_tags/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py index 04b03559110..c37b5cec672 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_delete.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 400 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py index b4025901400..050525481d8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py index 6c6c9e60ad3..cc0829912f6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id/test_post.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 405 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py index 69e9fc1d8a5..f17d54c41f7 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_pet_pet_id_upload_image/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py index ac1d420df14..403811c60c7 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_inventory/test_get.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py index 8208e5e1984..536fa8e30fe 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order/test_post.py @@ -34,14 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = post.response_for_200.application_xml - - response_body_schema = post.response_for_200.application_json - - - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py index 3b229d2b1b5..c9a1a2fd5dd 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_delete.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 400 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py index 7fca47ab679..ee48732052b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_store_order_order_id/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py index 0b494f2ba22..a6563d8d2ac 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 0 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py index a6ed9b4d735..94e2acbc96b 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_array/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 0 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py index 173e669239a..79428b7c0d6 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_create_with_list/test_post.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 0 response_body = '' - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py index a37041acbae..3c3e6f4ebf8 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_login/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py index 9329c79fb23..e7fa1f83468 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_logout/test_get.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 0 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py index 4ea2cc0f52b..573f7918269 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_delete.py @@ -35,6 +35,5 @@ def tearDown(self): response_status = 200 response_body = '' - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py index 1d247f5a4a3..d5851ac3141 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_get.py @@ -34,12 +34,7 @@ def tearDown(self): response_status = 200 response_body_schema = get.response_for_200.application_xml - - response_body_schema = get.response_for_200.application_json - - - if __name__ == '__main__': unittest.main() diff --git a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py index 6e94769a585..955a26355f4 100644 --- a/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py +++ b/samples/openapi3/client/petstore/python/test/test_paths/test_user_username/test_put.py @@ -35,8 +35,5 @@ def tearDown(self): response_status = 400 response_body = '' - - - if __name__ == '__main__': unittest.main()