abarbee
abarbee
In class ApiClient.java when building the request (method buildRequest), } else if ("multipart/form-data".equals(contentType)) { reqBody = buildRequestBodyMultipart(formParams);
meanwhile we modify the class ApiClient with this patch public RequestBody buildRequestBodyMultipart(final Map formParams) throws ApiException { MultipartBuilder mpBuilder = new MultipartBuilder().type(MultipartBuilder.FORM); for (Entry param : formParams.entrySet()) { if (param.getValue()...
I think there is the same error in other langages. For example csharp. in generated classe < name >Api.cs each objects parameters are transformed into a string instead of a...