Ktorfit icon indicating copy to clipboard operation
Ktorfit copied to clipboard

Support for multiple values under the same query parameter name

Open andreyfilyakov opened this issue 1 year ago • 2 comments

Is your feature request related to a problem? Please describe. In our project we have some requests which require multiple values for the same parameter name, e.g. <base_url>?param=value1&param=value2&param=value3. We tried to use QueryMap annotation to achieve our goal, but it works with Map<String, String> only, so it's not possible to set multiple values for the same key.

Describe the solution you'd like It'd be ideal to support Map<String, List<String>> for QueryMap annotation.

andreyfilyakov avatar Oct 24 '22 09:10 andreyfilyakov