abstract class Request<T>
body | 
abstract var body: T? | 
headers | 
val headers: MutableMap<String, String> | 
method | 
val method: String | 
url | 
val url: String | 
JSONRequest | 
open class JSONRequest : Request<String> | 
MultipartRequest | 
class MultipartRequest : Request<List<Part<*>>> |