interface HttpClient { companion object { const val DEFAULT_CONNECTION_TIMEOUT = 15_000 const val DEFAULT_READ_TIMEOUT = 15_000 } fun doRequest( method: RequestMethod, path: String, outClass: KClass, headers: List = emptyList(), body: IN? = null ): OUT fun doRequest( method: RequestMethod, path: String, outClas..