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
Support multiple array (object?) serialization strategies for the (query) parameters and headers
create a wrapper function that will handle the serialisation based on the supported collectionFormat formats
Possible values are:
csv - (default) comma separated values foo,bar.
ssv - space-separated values foo bar.
tsv - tab separated values foo\tbar.
pipes - pipe separated values foo|bar.
multi - multiple parameter instances instead of multiple values for a single instance foo=bar&foo=baz. This is valid only for parameters in "query" or "formData".
configuration or function itself should be providable/configurable via DI
research what is the preferred/best way to serialize objects