Open jishupei opened 1 year ago
any workaround? maybe using a custom api template?
any workaround? maybe using a custom api template?
Yes, if it's not officially supported, I'll have to use custom api template. But I'm not sure they support it any other way.
Description
for example, We want our query argument to end up with
color=[" blue","black","brown"]
instead ofcolor=blue,black,brown
orcolor=blue; color=black; Color = brown
, So we usecontent
.openapi-generator version
6.2.1
OpenAPI declaration file content or url
Command line used for generation
Steps to reproduce
The resulting code is:
The resulting url is:
xxx?color=blue,black,brown
Is there something wrong with my usage or is
content
not supported?