[REQ][Kotlin][OkHttp4] GetWithHttpInfo
Created by: wegendt-bosch
Is your feature request related to a problem? Please describe.
The old Java OkHttp2 code generator generated functions to get responses as <ApiResponse>
which includes headers and detailed status codes. Sometimes its nice to have these information available
Describe the solution you'd like
Generate a new function per endpoint, extracting the first part of the currently generated function up to calling super.request(...)
Describe alternatives you've considered
The only alternatives I know of are not upgrading to the OkHttp4 generator or doing those calls by hand.