swagger-codegen-generators
swagger-codegen-generators copied to clipboard
Good Day, i am currently trying to use the generated python-client but it seems the client is incomplete and/or incorrect. I generated the client with the docker image version `3.0.24`...
Hi, Having the given spec : ``` openapi: 3.0.0 info: version: "1.0" title: API servers: - description: Mock url: *** paths: /catalog/products: get: summary: finds products operationId: findProducts tags: -...
##### Description Files in the client folder generated for csharp contain a misleading comment near the head (Example for Simple API at API version 1.1.0 (no modifications from default, just...
Hi folks, is there any way to generate a (type:string,format:uuid) as go-type "uuid.UUID"? Yaml-Definition: ```yaml thing_id: type: string format: uuid ``` Generated code: ```go ThingId string `json:"thing_id"` ``` Expected code:...
When using swagger-codegen-maven-plugin version **3.0.29** with configuration: ```xml spring spring-cloud ``` classes are generated using old Swagger 1.5.x / OAS 2.x annotations instead of OAS3 annotations. In my understanding, this...
This PR is a (potential) fix for #887
Porting a Swagger Codegen 2 fix to Swagger Codegen 3. The ThreadPool `pool` is only used for async requests. If a client is not making any async requests, the pool...
https://github.com/swagger-api/swagger-codegen-generators/blob/dff6a3e4c56462a24873fd62e3c38ba61ed7974f/src/main/java/io/swagger/codegen/v3/generators/SchemaHandler.java#L20 I got null pointer execption on combined schema with allOf. According to the doc https://swagger.io/docs/specification/data-models/oneof-anyof-allof-not/ allOf, anyOf...etc should be lower case. Although swagger-apidoc generates an issue when allOf us...