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
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¶m=value2¶m=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.
The text was updated successfully, but these errors were encountered:
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¶m=value2¶m=value3
. We tried to useQueryMap
annotation to achieve our goal, but it works withMap<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>>
forQueryMap
annotation.The text was updated successfully, but these errors were encountered: