8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
public void todo(@Valid @RequestBody dto: Dto<Obj>) { } public void todo2(@Valid @RequestBody dto: Dto<Obj2>) { }
In Swagger model I see only
Dto«string» { }
And for both actions is shown same model/object, but I have 2 model/object Dto<Obj> and Dto<Obj2>
Dto<Obj>
Dto<Obj2>