Hello,
Is there a way that I can have multiple values displayed with @ApiParam if my @QueryParam is an object and has many fields withing itself.
For Example, if I had an POJO Pet with the fields age, name, breed; And I had a @GET request with the following parameters:
public Response getPetResponse(@ApiParam("Pet") @QueryParam("") Pet pet)
Can I make changes within the Model to generate multiple query parameters, one for age, name and breed so that the URL looks something like this after hitting try out:
http://example.com/api/api-docs/pet?age=12&name=Max&breed=RetrieverThanks