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); +// } } 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..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 @@ -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; @@ -88,6 +89,10 @@ public interface CodegenConfig { String requestBodyFileFolder(); + String responseFileFolder(String componentName); + + String responseDocFileFolder(); + String toApiName(String name); String toApiVarName(String name); @@ -180,6 +185,10 @@ public interface CodegenConfig { Set pathEndpointResponseHeaderTemplateFiles(); + Map responseTemplateFiles(); + + Map responseDocTemplateFiles(); + Map apiTestTemplateFiles(); Map modelTestTemplateFiles(); @@ -220,6 +229,8 @@ public interface CodegenConfig { String toRequestBodyDocFilename(String componentName); + String toResponseDocFilename(String componentName); + String toPathFileName(String path); String toParameterFileName(String baseName); @@ -375,4 +386,6 @@ public interface CodegenConfig { CodegenParameter fromRequestBody(RequestBody body, String bodyParameterName, String sourceJsonPath); String getBodyParameterName(CodegenOperation co); + + CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath); } 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/CodegenOperation.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/CodegenOperation.java index d99dc0b0623..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 @@ -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 = null; + public TreeMap statusCodeResponses = null; + public TreeMap wildcardCodeResponses = null; + + public TreeMap nonDefaultResponses = null; 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 88ce3fa35a0..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 @@ -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; } @@ -1239,8 +1247,12 @@ public String toRequestBodyFilename(String componentName) { return toModuleFilename(componentName); } + public String toResponseModuleName(String componentName) { return toModuleFilename(componentName); } + public String toRequestBodyDocFilename(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); @@ -1274,6 +1286,9 @@ public String modelDocFileFolder() { @Override public String requestBodyDocFileFolder() { return outputFolder; } + @Override + public String responseDocFileFolder() { return outputFolder; } + @Override public Map additionalProperties() { return additionalProperties; @@ -4071,124 +4086,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); - - 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 - 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)); - } - - 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) { String bodyParameterName = "body"; if (co != null && co.vendorExtensions != null && co.vendorExtensions.containsKey("x-codegen-request-body-name")) { @@ -4294,54 +4191,66 @@ public CodegenOperation fromOperation(String path, addConsumesInfo(operation, op); if (operation.getResponses() != null && !operation.getResponses().isEmpty()) { - ApiResponse methodResponse = findMethodResponse(operation.getResponses()); + op.responses = new TreeMap<>(); for (Map.Entry operationGetResponsesEntry : operation.getResponses().entrySet()) { 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; + String usedSourceJsonPath = sourceJsonPath + "/responses/" + key; + CodegenResponse r = fromResponse(response, usedSourceJsonPath); + + op.responses.put(key, r); + 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<>(); + } + 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; + } } } - } - } - if (Boolean.TRUE.equals(r.isDefault)) { - op.defaultReturnType = Boolean.TRUE; - 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 { + if (op.statusCodeResponses == null) { + op.statusCodeResponses = new TreeMap<>(); + } + 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; + } + } } } } } - 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); - }); - - if (methodResponse != null) { - handleMethodResponse(operation, schemas, op, methodResponse, importMapping); + // sort them + 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); } } @@ -4514,59 +4423,42 @@ 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) { - CodegenResponse r = CodegenModelFactory.newInstance(CodegenModelType.RESPONSE); + public CodegenResponse fromResponse(ApiResponse response, String sourceJsonPath) { + String responseRef = response.get$ref(); + ApiResponse usedResponse = response; + String usedSourceJsonPath = sourceJsonPath; + if (responseRef != null) { + usedResponse = ModelUtils.getReferencedApiResponse(this.openAPI, response); + usedSourceJsonPath = responseRef; + } - 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); - } + if (usedResponse == null) { + LOGGER.error("response in fromResponse cannot be null!"); + throw new RuntimeException("response in fromResponse cannot be null!"); } - r.message = escapeText(response.getDescription()); + 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 + "/"; - 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(); + Map headers = usedResponse.getHeaders(); if (headers != null) { + if (!usedResponse.getHeaders().isEmpty()) { + r.hasHeaders = true; + } List responseHeaders = new ArrayList<>(); for (Entry entry : headers.entrySet()) { String headerName = entry.getKey(); @@ -4576,7 +4468,7 @@ public CodegenResponse fromResponse(String responseCode, ApiResponse response, S } r.setResponseHeaders(responseHeaders); } - r.setContent(getContent(response.getContent(), r.imports, "", usedSourceJsonPath + "/content")); + r.setContent(getContent(usedResponse.getContent(), r.imports, "", usedSourceJsonPath + "/content")); return r; } @@ -5047,41 +4939,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 * @@ -6624,8 +6481,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 toResponseModuleName(refPieces[3]); } return null; } @@ -7320,6 +7180,11 @@ public String requestBodyFileFolder() { return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "request_bodies"; } + @Override + public String responseFileFolder(String componentName) { + return outputFolder + File.separatorChar + packageName() + File.separatorChar + "components" + File.separatorChar + "responses" + File.separatorChar + toResponseModuleName(componentName); + } + @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 dc30348f454..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 @@ -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; @@ -539,28 +540,31 @@ 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 - - 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 = (response.isDefault)? "response_for_default" : "response_for_"+response.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)); + String code = responseEntry.getKey(); + CodegenResponse response = responseEntry.getValue(); + 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)); + } } } } @@ -677,6 +681,95 @@ 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 responseEntry: specResponses.entrySet()) { + String componentName = responseEntry.getKey(); + ApiResponse apiResponse = responseEntry.getValue(); + String sourceJsonPath = "#/components/responses/" + componentName; + 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(specRefApiResponse, null); + responses.put(componentName, refResponse); + Boolean generateResponses = Boolean.TRUE; + for (Map.Entry entry : config.responseTemplateFiles().entrySet()) { + String templateName = entry.getKey(); + String fileName = entry.getValue(); + String responseFileFolder = config.responseFileFolder(componentName); + String responseFilename = responseFileFolder + File.separatorChar + fileName; + + Map templateData = new HashMap<>(); + templateData.put("packageName", config.packageName()); + templateData.put("response", response); + templateData.put("imports", response.imports); + try { + File written = processTemplateToFile(templateData, templateName, responseFilename, generateResponses, CodegenConstants.RESPONSES, responseFileFolder); + if (written != null) { + files.add(written); + if (config.isEnablePostProcessFile() && !dryRun) { + config.postProcessFile(written, "response"); + } + } + } catch (Exception 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 headerFilename = responseFileFolder + File.separatorChar + config.toParameterFileName(header.baseName) + ".py"; + try { + File written = processTemplateToFile(headerMap, headerTemplateName, headerFilename, generateResponses, CodegenConstants.RESPONSES, responseFileFolder); + 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 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("response", refResponse); + 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; + } + private TreeMap generateRequestBodies(List files) { final Map specRequestBodies = this.openAPI.getComponents().getRequestBodies(); if (specRequestBodies == null) { @@ -700,7 +793,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()); @@ -730,7 +823,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) { @@ -1115,7 +1208,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 +1242,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 +1354,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/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/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/java/org/openapitools/codegen/languages/PythonClientCodegen.java b/modules/openapi-json-schema-generator/src/main/java/org/openapitools/codegen/languages/PythonClientCodegen.java index 720ff5dbe61..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,10 +20,12 @@ 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; 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; @@ -85,6 +87,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; @@ -324,6 +327,8 @@ public void processOpts() { pathEndpointResponseTemplateFiles.put("response.handlebars", "__init__.py"); pathEndpointResponseHeaderTemplateFiles.add("header.handlebars"); pathEndpointTestTemplateFiles.add("endpoint_test.handlebars"); + responseTemplateFiles.put("response.handlebars", "__init__.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)"); @@ -441,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")); @@ -714,9 +725,6 @@ public OperationsMap postProcessOperationsWithModels(OperationsMap objs, List operations = val.getOperation(); for (CodegenOperation operation : operations) { fixSchemaImports(operation.imports); - for (CodegenResponse response: operation.responses) { - fixSchemaImports(response.imports); - } } return objs; } @@ -809,6 +817,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 @@ -2336,12 +2349,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 @@ -2353,6 +2366,16 @@ public String toApiDocFilename(String name) { return toApiName(name); } + public String toResponseModuleName(String componentName) { + return toModuleFilename(componentName) + "_response"; + } + + public String toResponseDocFilename(String componentName) { return toResponseModuleName(componentName); } + + public String responseDocFileFolder() { + return outputFolder + File.separator + responseDocPath; + } + public String toRequestBodyFilename(String componentName) { return toModuleFilename(componentName) + "_request_body"; } @@ -2362,7 +2385,7 @@ public String toRequestBodyDocFilename(String 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/README_common.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/README_common.handlebars index 59fd200fe1c..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,12 +33,20 @@ 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}} {{/each}} {{/if}} +{{#if responses}} + +## Component Responses + +{{#each responses}} +- {{#with this}}[{{refModule}}](docs/components/responses/{{refModule}}.md){{/with}} +{{/each}} +{{/if}} ## Documentation For Authorization 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..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) [[Back to API list]](../../../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="../../../" endpointsLink=true }} 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/endpoint.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint.handlebars index f17293c96be..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}} -from . import response_for_{{#if isDefault}}default{{else}}{{code}}{{/if}} +{{#unless refModule}} +from . import response_for_{{@key}} +{{/unless}} {{/each}} {{#with bodyParam}} {{#unless refModule}} @@ -102,18 +111,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 +272,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/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_doc.handlebars b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_doc.handlebars index 357dea66ad1..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 @@ -157,70 +157,25 @@ 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}} -default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{message}} +{{#if defaultResponse}} +{{#if defaultResponse.refModule}} +default | [{{refModule}}.ApiResponse](../../../components/responses/{{refModule}}.md) | {{defaultResponse.message}} {{else}} -{{code}} | [response_for_{{code}}.ApiResponse](#response_for_{{code}}.ApiResponse) | {{message}} +default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | {{defaultResponse.message}} {{/if}} -{{/each}} -{{#each responses}} -{{#if isDefault}} - -#### response_for_default.ApiResponse +{{/if}} +{{#each nonDefaultResponses}} +{{#if refModule}} +{{@key}} | [{{refModule}}.ApiResponse](../../../components/responses/{{refModule}}.md) | {{message}} {{else}} - -#### response_for_{{code}}.ApiResponse +{{@key}} | [response_for_{{@key}}.ApiResponse](#response_for_{{@key}}.ApiResponse) | {{message}} {{/if}} -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}} | -{{#each content}} - {{#with this.schema}} - -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../code schemaNamePrefix3="." complexTypePrefix="../../../components/schema/" }} - {{/with}} {{/each}} -{{#if responseHeaders}} -#### response_for_{{code}}.Headers +{{#each responses}} +{{#unless refModule}} -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}} - {{/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}} - {{/with}} - {{/with}} - {{/each}} - {{/if}} - {{/each}} - {{#each responseHeaders}} - {{#if schema}} - {{#with schema}} - -{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1="response_for_" schemaNamePrefix2=../../code 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/" }} - {{/with}} - {{/with}} - {{/each}} - {{/if}} - {{/each}} -{{/if}} +{{> response_doc response=this }} +{{/unless}} {{/each}} ### Authorization @@ -231,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="../../../../" endpointsLink=true}} {{/each}} \ No newline at end of file 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/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..5cc4e683b35 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/endpoint_response_type_hint.handlebars @@ -0,0 +1,15 @@ +{{#each statusCodeResponses}} +{{#gte @key 200}} +{{#lte @key 299}} +response_for_{{@key}}.ApiResponse, +{{/lte}} +{{/gte}} +{{/each}} +{{#each wildcardCodeResponses}} +{{#eq @key 2}} +response_for_{{@key}}xx.ApiResponse, +{{/eq}} +{{/each}} +{{#if defaultResponse}} +response_for_default.ApiResponse, +{{/if}} \ No newline at end of file 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..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 @@ -33,31 +33,31 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): {{#each responses}} {{#if @first}} - response_status = {{code}} -{{#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}} - {{/if}} + response_status = {{#eq @key "default"}}0{{else}}{{@key}}{{/eq}} + {{#if content}} + {{#each content}} + {{#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 }} -{{#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,26 +79,24 @@ class Test{{operationIdSnakeCase}}(ApiTestMixin, unittest.TestCase): content_type=None, accept_content_type=accept_content_type, ) -{{/if}} -{{/with}} - -{{/each}} - -{{/if}} -{{/each}} -{{else}} + {{/if}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} + {{else}} response_body = '' -{{/if}} -{{/if}} + {{/if}} + {{/if}} {{/each}} {{#if bodyParam}} {{#with bodyParam}} {{#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}} @@ -130,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/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..c61da2f03b5 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/footer_links.handlebars @@ -0,0 +1 @@ +{{#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..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 @@ -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 1632ff991cb..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,15 @@ {{#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}} + +[[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 new file mode 100644 index 00000000000..c6d30092b96 --- /dev/null +++ b/modules/openapi-json-schema-generator/src/main/resources/python/response_doc.handlebars @@ -0,0 +1,112 @@ +{{#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 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}} + {{#with this.schema}} + +{{> 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 schemaNamePrefix1=../paramName schemaNamePrefix2="." complexTypePrefix="../../components/schema/" }} + {{/with}} + {{else}} + {{#each getContent}} + {{#with this}} + {{#with schema}} + +{{> api_doc_schema_type_hint anchorContainsPeriod=true schemaNamePrefix1=../paramName schemaNamePrefix2="." complexTypePrefix="../../../components/schema/" }} + {{/with}} + {{/with}} + {{/each}} + {{/if}} + {{/each}} +{{else}} + {{#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}} +{{/if}} +{{#if refModule}} + +[[Back to top]](#top) {{> footer_links readmePath="../../../" responsesLink=true}} +{{/if}} +{{/with}} \ No newline at end of file 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..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 @@ -1699,7 +1687,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); } @@ -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 @@ -3508,7 +3496,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); @@ -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,11 +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); - assertTrue(cr.is2xx); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); - cr = co.responses.get(3); - assertTrue(cr.is5xx); + cr = co.responses.get("500"); assertFalse(cr.getContent().get("application/application").getSchema().isPrimitiveType); path = "/pet"; @@ -3978,23 +3964,17 @@ public void testResponses() { co = codegen.fromOperation(path, "PUT", operation, null); assertTrue(co.hasErrorResponseObject); - // 200 response - cr = co.responses.get(0); - assertTrue(cr.is2xx); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); - // 400 response - cr = co.responses.get(1); - assertTrue(cr.is4xx); - assertEquals(cr.code, "400"); + 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); - assertTrue(cr.is2xx); + cr = co.responses.get("200"); assertFalse(cr.getContent().get("application/json").getSchema().isPrimitiveType); } @@ -4119,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); @@ -4147,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"); 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..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); } @@ -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"); } 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/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"); 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..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 @@ -41,7 +41,7 @@ paths: operationId: addPet responses: '200': - description: Ok + $ref: '#/components/responses/SuccessDescriptionOnly' '405': description: Invalid input security: @@ -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' @@ -295,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: @@ -480,7 +469,7 @@ paths: operationId: logoutUser responses: default: - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' '/user/{username}': get: tags: @@ -549,7 +538,7 @@ paths: type: string responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: User not found /fake_classname_test: @@ -655,7 +644,7 @@ paths: - -1.2 responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: Not found content: @@ -701,7 +690,7 @@ paths: operationId: EndpointParameters responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '404': description: User not found security: @@ -836,7 +825,7 @@ paths: format: int64 responses: '200': - description: succeeded + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/refs/number: post: tags: @@ -1051,7 +1040,7 @@ paths: operationId: JsonFormData responses: '200': - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/x-www-form-urlencoded: @@ -1076,7 +1065,7 @@ paths: operationId: InlineAdditionalProperties responses: '200': - description: successful operation + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1099,7 +1088,7 @@ paths: type: string responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1132,7 +1121,7 @@ paths: operationId: BodyWithFileSchema responses: '200': - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' requestBody: content: application/json: @@ -1163,7 +1152,7 @@ paths: type: string responses: "200": - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/test-query-paramters: put: tags: @@ -1219,7 +1208,7 @@ paths: $ref: '#/components/schemas/StringWithValidation' responses: "200": - description: Success + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/{petId}/uploadImageWithRequiredFile': post: tags: @@ -1524,7 +1513,7 @@ paths: type: string responses: '200': - description: ok + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/refObjInQuery': get: tags: @@ -1542,7 +1531,7 @@ paths: $ref: '#/components/schemas/Foo' responses: '200': - description: ok + $ref: '#/components/responses/SuccessDescriptionOnly' '/fake/jsonWithCharset': post: tags: @@ -1585,7 +1574,7 @@ paths: $ref: '#/components/schemas/JSONPatchRequest' responses: '200': - description: OK + $ref: '#/components/responses/SuccessDescriptionOnly' /fake/deleteCoffee/{id}: delete: operationId: deleteCoffee @@ -1602,7 +1591,7 @@ paths: type: string responses: '200': - description: OK + $ref: '#/components/responses/SuccessDescriptionOnly' default: description: Unexpected error /fake/queryParamWithJsonContentType: @@ -1649,6 +1638,28 @@ servers: - 'v2' default: 'v2' components: + responses: + SuccessDescriptionOnly: + description: Success + SuccessWithJsonApiResponse: + description: successful operation + content: + 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: 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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -51,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -51,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -51,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -46,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -51,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -45,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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..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 @@ -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) ``` @@ -43,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 @@ -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_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 4d476d6410e..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 @@ -135,8 +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 500507aedf0..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,8 +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 ac493b3bad6..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 @@ -94,8 +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 d481d416e2b..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 @@ -98,8 +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 0c112e87586..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 @@ -232,8 +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 574d73c3ecc..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 @@ -152,8 +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 e423daee17d..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 @@ -88,8 +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 3510db2f53a..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 @@ -185,8 +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 9ff1f262b96..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,8 +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 79520d71eb6..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 @@ -88,8 +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 9c4c774d88e..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 @@ -88,8 +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 82f8301c6a9..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,8 +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 d2d3d4fdd67..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 @@ -164,8 +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 664420e05b8..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 @@ -148,8 +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 d90866a6004..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 @@ -112,8 +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 15c8737394d..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 @@ -94,8 +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 bfc7d54a588..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 @@ -210,8 +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 bd6e7e68b3d..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 @@ -288,8 +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 bf66cd906e6..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 @@ -118,8 +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 7a39d573adc..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 @@ -118,8 +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 88ceb225ed1..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 @@ -88,8 +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 50a51ab778d..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 @@ -216,8 +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 264f5836622..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 @@ -216,8 +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 f98a857fea1..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 @@ -118,8 +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 3ba349669be..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 @@ -118,8 +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 aa77a36692c..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 @@ -118,8 +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 72f689394a4..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 @@ -112,8 +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 699ef4a104b..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 @@ -112,8 +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 0d3afdde73e..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 @@ -212,8 +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 d9c0198cbae..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 @@ -98,8 +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 209b36f06fa..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 @@ -216,8 +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 b0dfa19f5e3..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 @@ -264,8 +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 74759c9cc67..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 @@ -88,8 +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 9e5496bac23..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 @@ -98,8 +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 eb78697d700..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 @@ -216,8 +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 c8ad2c62053..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 @@ -216,8 +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 1aa1befb1a2..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 @@ -216,8 +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 5d4913a5018..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 @@ -148,8 +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 a29ce05bebc..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 @@ -148,8 +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 0bbc4f6f340..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 @@ -157,8 +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 57eff56098c..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 @@ -178,8 +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 e1e3d290066..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 @@ -92,8 +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 92a8ac62a27..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 @@ -227,8 +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 c3a5e60315d..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 @@ -148,8 +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 e6e629af30b..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 @@ -232,8 +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 23550b69722..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 @@ -154,8 +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 5265521a1a0..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 @@ -172,8 +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 c5a8604bff6..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 @@ -218,8 +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 e16576601ce..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 @@ -88,8 +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 b961b8e641b..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 @@ -88,8 +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 37797dfae68..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 @@ -193,8 +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 1bef18603f7..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 @@ -88,8 +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 6253dfaaade..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 @@ -124,8 +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 e18c15fa24f..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 @@ -88,8 +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 c2f95b14522..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 @@ -88,8 +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 34cb0f7194d..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 @@ -282,8 +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 fbeb5e0d6ea..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 @@ -270,8 +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 d16d5c84950..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 @@ -225,8 +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 82919bffc1f..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 @@ -210,8 +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 4f302bcbecb..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 @@ -158,8 +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 51f05632a77..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 @@ -142,8 +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 031f4a15be6..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 @@ -112,8 +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 a6bb3083bf1..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 @@ -88,8 +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 1efdaac8347..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 @@ -162,8 +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 9a7b069f408..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,8 +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 00b63d23469..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 @@ -270,8 +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 42d649e9c70..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 @@ -114,8 +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 8c08f8a21b5..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 @@ -94,8 +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 41a5a7cb5d3..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 @@ -100,8 +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 c0ee6c1be30..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 @@ -94,8 +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 51f4dd3bf02..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 @@ -94,8 +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 07db8a05441..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 @@ -98,8 +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 0fe81d57f3e..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 @@ -94,8 +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 e2544e93040..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 @@ -94,8 +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 5be0dabe9ba..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 @@ -100,8 +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 5ed3b496eea..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,8 +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 d911ed11e97..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 @@ -185,8 +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 da4da6b039e..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,8 +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 4d40c7a5e32..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 @@ -106,8 +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 d2a5508554e..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 @@ -88,8 +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 b661c6c011f..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 @@ -270,8 +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 9f13ebd87de..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 @@ -125,8 +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 9920c92524b..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 @@ -600,8 +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 287f9465345..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 @@ -941,8 +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 3c00bc9fa3f..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 @@ -216,8 +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 27f3220cd8d..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 @@ -216,8 +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 71c0ae0e695..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 @@ -216,8 +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/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..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 @@ -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) ``` @@ -47,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 @@ -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/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/.openapi-generator/FILES b/samples/openapi3/client/petstore/python/.openapi-generator/FILES index 2cd2b8cd431..5b704a5ed5f 100644 --- a/samples/openapi3/client/petstore/python/.openapi-generator/FILES +++ b/samples/openapi3/client/petstore/python/.openapi-generator/FILES @@ -69,6 +69,9 @@ 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/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 docs/components/schema/additional_properties_validator.AdditionalPropertiesValidator.md @@ -262,6 +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/__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/__init__.py petstore_api/components/schema/__init__.py petstore_api/components/schema/abstract_step_message.py petstore_api/components/schema/abstract_step_message.pyi @@ -530,7 +538,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 @@ -540,7 +547,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 @@ -548,7 +554,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 @@ -559,20 +564,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 @@ -581,7 +583,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 @@ -591,7 +592,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 @@ -603,12 +603,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 @@ -618,7 +616,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 @@ -658,7 +655,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 @@ -717,7 +713,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 @@ -740,7 +735,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 @@ -781,11 +775,9 @@ 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 -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 @@ -829,12 +821,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 diff --git a/samples/openapi3/client/petstore/python/README.md b/samples/openapi3/client/petstore/python/README.md index 2160db7a7f4..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,12 +356,18 @@ 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) +## 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/AnotherFakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/AnotherFakeApi.md index e8ce606ed3d..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/DefaultApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/DefaultApi.md index d61bf95c953..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/FakeApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeApi.md index a86516a85a9..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md b/samples/openapi3/client/petstore/python/docs/apis/tags/FakeClassnameTags123Api.md index f03cc8bba8e..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/PetApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/PetApi.md index d77d7ee970e..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/StoreApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/StoreApi.md index e4f7d85e60d..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 API list]](../../../README.md#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/petstore/python/docs/apis/tags/UserApi.md b/samples/openapi3/client/petstore/python/docs/apis/tags/UserApi.md index 6c2711ab25d..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 API list]](../../../README.md#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/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..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,5 +71,4 @@ 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 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 145df528442..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 @@ -41,10 +41,10 @@ default | [response_for_default.ApiResponse](#response_for_default.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_default.application_json](#response_for_default.application_json), ] | | headers | Unset | headers were not defined | -# response_for_0.application_json +# response_for_default.application_json ## Model Type Info Input Type | Accessed Type | Description | Notes @@ -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 API list]](../../../../README.md#documentation-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/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..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 @@ -78,5 +78,4 @@ 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 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..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 @@ -76,5 +76,4 @@ 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 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..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 @@ -76,5 +76,4 @@ 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 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 d08986d4e8d..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 @@ -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) ``` @@ -52,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 @@ -60,18 +61,10 @@ 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 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 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 dcd61df3f2c..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 @@ -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) ``` @@ -62,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 @@ -85,18 +86,10 @@ 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 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 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..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 @@ -74,5 +74,4 @@ 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 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 30e7b8d6f10..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 @@ -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) ``` @@ -80,18 +81,10 @@ 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 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 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..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,5 +71,4 @@ 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 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..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 @@ -74,5 +74,4 @@ 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 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 55257dcc609..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 @@ -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) ``` @@ -63,15 +64,8 @@ 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 default | [response_for_default.ApiResponse](#response_for_default.ApiResponse) | Unexpected error - -#### 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 @@ -84,5 +78,4 @@ 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 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 5e8f67d8469..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 @@ -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) ``` @@ -101,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 ------------- | ------------- | ------------- | ------------- @@ -122,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 API list]](../../../../README.md#documentation-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 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 2520a93e2b4..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 @@ -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) ``` @@ -172,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 ------------- | ------------- | ------------- | ------------- @@ -200,5 +194,4 @@ 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 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..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,5 +56,4 @@ 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 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 b5783df65f2..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 @@ -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) ``` @@ -146,18 +148,10 @@ 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 - -#### 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 [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 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 c299f3a72ed..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 @@ -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) ``` @@ -61,18 +62,10 @@ 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_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 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 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..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,5 +237,4 @@ 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 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 4ee6365c0c4..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 @@ -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) ``` @@ -64,18 +65,10 @@ 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_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 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 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 e6e30a3d6db..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 @@ -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) ``` @@ -49,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 @@ -57,18 +58,10 @@ 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 - -#### 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 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 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..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,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 API list]](../../../../README.md#documentation-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 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..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 @@ -78,5 +78,4 @@ 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 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..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 @@ -74,5 +74,4 @@ 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 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 35da5e17462..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 @@ -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) ``` @@ -70,18 +71,10 @@ 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 - -#### 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 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 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..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 @@ -78,5 +78,4 @@ 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 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..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,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 API list]](../../../../README.md#documentation-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 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..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,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 API list]](../../../../README.md#documentation-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 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 ae7a58d6cb7..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 @@ -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) ``` @@ -141,18 +142,10 @@ 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 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 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 2b435a4f09d..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 @@ -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) ``` @@ -63,18 +64,10 @@ 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 - -#### 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 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 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 3551eb6e224..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 @@ -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) ``` @@ -49,5 +50,4 @@ 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 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..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 @@ -74,5 +74,4 @@ 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 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..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 @@ -74,5 +74,4 @@ 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 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..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,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 API list]](../../../../README.md#documentation-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 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..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,5 +85,4 @@ 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 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..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,5 +97,4 @@ 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 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..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,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 API list]](../../../../README.md#documentation-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 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 c9127bf5fbf..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 @@ -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) ``` @@ -137,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) | Ok +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 ------------- | ------------- | ------------- | ------------- @@ -158,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 API list]](../../../../README.md#documentation-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 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 bc2e52dc6c6..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 @@ -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) ``` @@ -119,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 API list]](../../../../README.md#documentation-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 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..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,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 API list]](../../../../README.md#documentation-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 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..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,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 API list]](../../../../README.md#documentation-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 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..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,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 API list]](../../../../README.md#documentation-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 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 00faa3b5ffb..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 @@ -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) ``` @@ -164,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 API list]](../../../../README.md#documentation-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 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 f5e969baa73..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 @@ -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) ``` @@ -119,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 API list]](../../../../README.md#documentation-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 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..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,5 +128,4 @@ 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 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 3f8db21a9f8..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 @@ -109,24 +109,10 @@ 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 [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 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 1c55ffabb57..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 @@ -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) ``` @@ -84,5 +85,4 @@ 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 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 c309f27a0a7..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 @@ -50,30 +50,10 @@ This 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 [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 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..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,5 +106,4 @@ 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 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..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 @@ -95,5 +95,4 @@ 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 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 ffa3b94ba36..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 @@ -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) ``` @@ -61,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 @@ -82,5 +83,4 @@ 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 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 e8b267d9e04..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 @@ -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) ``` @@ -75,5 +76,4 @@ 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 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 c9f1e81ab58..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 @@ -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) ``` @@ -75,5 +76,4 @@ 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 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 b982fdf4061..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 @@ -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) ``` @@ -63,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 ------------- | ------------- | ------------- | ------------- @@ -84,5 +78,4 @@ 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 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..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,5 +104,4 @@ 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 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..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,5 +128,4 @@ 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 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 4b653ea0b3c..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 @@ -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) ``` @@ -36,18 +37,10 @@ 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 - -#### 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 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 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 999d9d49085..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 @@ -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) ``` @@ -66,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 @@ -109,5 +110,4 @@ 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 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 de3093368f4..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 @@ -3,3 +3,5 @@ Type | Description | Notes ------------- | ------------- | ------------- [**Client**](../../components/schema/client.Client.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 6264eb3bce1..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 @@ -8,3 +8,5 @@ Type | Description | Notes ------------- | ------------- | ------------- [**Pet**](../../components/schema/pet.Pet.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 196df3f9b4a..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 @@ -9,3 +9,5 @@ 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 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 new file mode 100644 index 00000000000..b04c66f3765 --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_description_only_response.md @@ -0,0 +1,10 @@ + +# 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 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 new file mode 100644 index 00000000000..4e82b8137fd --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_inline_content_and_header_response.md @@ -0,0 +1,34 @@ + +# 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 + +# parameter_some_header.schema + +## Model Type Info +Input Type | Accessed Type | Description | Notes +------------ | ------------- | ------------- | ------------- +str, | str, | | + +[[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 new file mode 100644 index 00000000000..71b43b32ee0 --- /dev/null +++ b/samples/openapi3/client/petstore/python/docs/components/responses/success_with_json_api_response_response.md @@ -0,0 +1,16 @@ + +# petstore_api.components.responses.success_with_json_api_response_response +## ApiResponse +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- +response | urllib3.HTTPResponse | Raw response | +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 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 38525a841ef..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 @@ -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 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 0020723a9a3..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 @@ -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 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 4224845509a..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 @@ -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 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 e9b862de8c1..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 @@ -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 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 2f7b053fa92..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 @@ -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 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 09fb1b6e97b..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 @@ -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 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 c968aee5b79..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 @@ -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 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 70f71a878fa..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 @@ -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 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 bdf4e0a3a22..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 @@ -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 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 29fc2ec6435..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 @@ -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 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 a38c0a2781f..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 @@ -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 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 e257b055162..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 @@ -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 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 d2c8ea9cee3..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 @@ -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 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 d1d3ad02571..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 @@ -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 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 77669d1ffe5..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 @@ -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 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 d81b8e01843..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 @@ -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 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 c637f7895ed..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 @@ -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 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 43e067675c4..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 @@ -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 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 0412b4ffe3c..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 @@ -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 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 11c5268af8d..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 @@ -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 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 f26faccb7a5..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 @@ -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 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 c645171e706..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 @@ -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 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 b9577c04e2f..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 @@ -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 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 5dd18d57b5b..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 @@ -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 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 3647fdb1369..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 @@ -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 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 28603f5d605..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 @@ -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 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 040fa43e9bf..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 @@ -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 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 7cbaec55ce8..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 @@ -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 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 eaf3b894936..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 @@ -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 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 3f76af87884..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 @@ -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 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 6f345733b08..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 @@ -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 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 78f9dd94727..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 @@ -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 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 ec6d76fdcaa..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 @@ -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 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 5e941f1fc95..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 @@ -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 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 127468a07e2..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 @@ -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 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 5ac3ed9bbbf..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 @@ -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 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 0253eb326d8..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 @@ -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 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 5746907f57e..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 @@ -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 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 69203f721fa..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 @@ -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 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 fee63c088c0..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 @@ -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 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 a085e4b2303..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 @@ -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 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 63bb9f9480e..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 @@ -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 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 e2146bf8453..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 @@ -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 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 922f3d688e0..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 @@ -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 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 1e0d2e6c438..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 @@ -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 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 84c7b8e91ba..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 @@ -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 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 e740e74dcce..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 @@ -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 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 a5e96f94631..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 @@ -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 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 e7294bd0320..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 @@ -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 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 3a5a2d6d207..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 @@ -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 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 2bb10ce6175..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 @@ -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 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 8c38879eed8..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 @@ -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 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 652dab7210c..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 @@ -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 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 d4afd48281e..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 @@ -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 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 03f6912f027..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 @@ -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 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 ac56c9c6260..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 @@ -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 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 bc6cd090f8b..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 @@ -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 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 340e13a6679..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 @@ -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 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 6ebbed31a06..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 @@ -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 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 822b1216a26..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 @@ -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 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 b2c438e8a66..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 @@ -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 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 cb96186778f..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 @@ -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 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 aee54a6661e..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 @@ -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 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 90928c17086..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 @@ -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 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 a2207e06c0b..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 @@ -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 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 30a28a943e9..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 @@ -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 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 1e4cffb88de..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 @@ -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 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 c7c348f9832..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 @@ -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 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 629d45721a8..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 @@ -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 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 f662ceb6f58..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 @@ -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 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 c0b3440c747..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 @@ -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 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 5dc169f3535..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 @@ -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 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 6ee37a5e41a..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 @@ -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 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 33e7844f834..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 @@ -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 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 54986056d29..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 @@ -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 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 eb2784242f1..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 @@ -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 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 ef20d589ba8..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 @@ -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 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 81f0ed499d8..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 @@ -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 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 ad5577a28ed..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 @@ -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 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 dd72eaf95de..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 @@ -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 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 7e555e36479..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 @@ -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 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 6b9c32dc700..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 @@ -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 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 51f63f1d3c2..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 @@ -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 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 29ada8e110c..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 @@ -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 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 d3396615fb3..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 @@ -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 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 787d6a79b5a..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 @@ -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 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 96a127e36a8..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 @@ -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 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 17d03bfe01b..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 @@ -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 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 d4f54564b60..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 @@ -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 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 31161e4d56d..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 @@ -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 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 959da66ed9c..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 @@ -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 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 33a21467965..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 @@ -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 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 dffa7e28d3e..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 @@ -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 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 3178e57de97..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 @@ -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 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 d246859b3ca..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 @@ -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 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 d47a95c9018..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 @@ -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 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 216130fc76b..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 @@ -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 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 4c2370e95b2..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 @@ -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 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 c51e4a91426..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 @@ -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 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 1b1c829dd5f..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 @@ -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 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 b48d269c0d5..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 @@ -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 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 d6c9bfee82c..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 @@ -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 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 e026392c4ca..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 @@ -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 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 64180c23919..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 @@ -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 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 b07954b4e58..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 @@ -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 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 46d4938849d..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 @@ -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 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 be143e4ba94..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 @@ -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 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 8d82a85e32f..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 @@ -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 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 72837b266ba..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 @@ -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 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 1ea4c82de28..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 @@ -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 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 d07b7660fb7..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 @@ -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 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 2861bc0c29e..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 @@ -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 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 70bd86cb94e..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 @@ -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 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 c21f4ceed06..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 @@ -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 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 e6a7e2a1efd..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 @@ -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 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 b868db4b637..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 @@ -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 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 51dc3db85e2..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 @@ -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 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 bc73c1c9a4e..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 @@ -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 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 8942af9ac2c..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 @@ -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 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 1ff6bc48413..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 @@ -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 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 c21f9de71bb..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 @@ -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 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 dda7c74e4d7..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 @@ -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 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 be887f7226d..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 @@ -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 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 fa3d01a4e75..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 @@ -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 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 87fac9db235..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 @@ -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 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/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/paths/fake/delete/response_for_200/__init__.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/paths/fake/delete/response_for_200/__init__.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/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/__init__.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/__init__.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/__init__.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/paths/fake/get/response_for_200/__init__.py b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py similarity index 51% rename from samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py index 7ec95a8627a..1b7434633b5 100644 --- a/samples/openapi3/client/petstore/python/petstore_api/paths/fake/get/response_for_200/__init__.py +++ b/samples/openapi3/client/petstore/python/petstore_api/components/responses/success_inline_content_and_header_response/parameter_some_header.py @@ -1,7 +1,16 @@ -import dataclasses +# coding: utf-8 + +""" + + + Generated by: https://openapi-generator.tech +""" + +from dataclasses import dataclass +import typing_extensions import urllib3 -from petstore_api import api_client +from petstore_api import api_client, exceptions from datetime import date, datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 @@ -16,13 +25,10 @@ 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 +schema = schemas.StrSchema -response = api_client.OpenApiResponse( - response_cls=ApiResponse, +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/components/responses/success_with_json_api_response_response/__init__.py similarity index 100% rename from samples/openapi3/client/petstore/python/petstore_api/paths/pet_pet_id_upload_image/post/response_for_200/__init__.py rename to samples/openapi3/client/petstore/python/petstore_api/components/responses/success_with_json_api_response_response/__init__.py 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/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/__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_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/__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_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/__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_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/__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_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/__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_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/__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_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/__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_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/__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_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/__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_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/__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/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/__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/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/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/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', 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_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/__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 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, -) 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()