request
inline suspend fun <Body : Any, Output : Any> request(crossinline onRequest: RequestScope.() -> Unit, crossinline onResponse: suspend ResponseScope<Body>.() -> Output): Output?
inline suspend fun <Output : Any> request(crossinline onRequest: RequestScope.() -> Unit, crossinline onResponse: suspend (String) -> Output): Output?
inline suspend fun <Output : Any> request(crossinline onRequest: RequestScope.() -> Unit, crossinline onResponse: suspend (ByteArray) -> Output): Output?