docusign / docusign-esign-csharp-client

The Official Docusign C# Client Library used to interact with the eSignature REST API. Send, sign, and approve documents using this client.
https://developers.docusign.com/docs/esign-rest-api/sdks/csharp/
MIT License
130 stars 159 forks source link

UpdateReportResultsCsvWithHttpInfo can't get result #318

Open cecsuzukiy opened 3 years ago

cecsuzukiy commented 3 years ago

When using the SDK call: AccountsApi.UpdateReportResultsCsvWithHttpInfo(..) There returns ApiResponse but not include Content.

because set null

return new ApiResponse(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), null);

correct?

return new ApiResponse(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Name, x => x.Value.ToString()), localVarResponse.Content);