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
@florianbepunkt looking at the filter query parameter in the provided spec, they define it as a string, so the generated code matches that. If you know that's not right, you'd currently need to pass an array and ignore any compiler errors. Long-term, we might want to allow people to patch specs, but that's not currently possible, the responsibility is on the provider to correctly describe their API
We're generating a client from an eBay OpenAPI spec (https://developer.ebay.com/api-docs/master/sell/finances/openapi/3/sell_finances_v1_oas3.json).
This gives us the desired method:
However the eBay API allows for multiple filters to be set.
So in a GET URL this would be DOMAIN.com?filter=filterA&filter=filterB.
But these multi query params do not translate to the generated client. I can't specify an array for filter, so unsure what to do.
The text was updated successfully, but these errors were encountered: