play-swagger
play-swagger copied to clipboard
Request parameters not visible in Swagger ui
Query may handle multiple optional parameters, for such case "CarsSearch" case class has been defined with query string binders.
The problem is that swagger displays just one input string as parameter, it looks like it does not know how to handle case class in such situation. It shows request type as CarsSearch case class path
application.models.request.CarsSearch
and expect String, but it should expect multiple parameters defined in CarsSearch class.
How to fix it?