You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generating Swift API leads to sometimes not separated method arguments
/** Updated user - parameter body: (body) Updated user object - parameter username: (path) name that need to be updated - parameter completion: completion handler to receive the data and the error objects */openclassfunc updateUser(body: Userusername:String, completion:@escaping((_ data:Void?,_ error:Error?)->Void)){updateUserWithRequestBuilder(body: bodyusername: username).execute{(response, error)->Voidin
if error ==nil{completion((), error)}else{completion(nil, error)}}}
Swagger-codegen version
First introduced with 3.0.3, also noticed in 3.0.4
hello @bsteimer this issue has been fixed by codegen-generators 299 PR. So going to close this issue but, please let me know if you find something wrong and i'll work on a fix asap
Description
Generating Swift API leads to sometimes not separated method arguments
Swagger-codegen version
First introduced with 3.0.3, also noticed in 3.0.4
Swagger declaration file content or url
https://petstore.swagger.io/v2/swagger.json
Command line used for generation
Used swagger-codegen-maven-plugin
Steps to reproduce
Related issues/PRs
Suggest a fix/enhancement
The text was updated successfully, but these errors were encountered: