Request

abstract class Request<T>

HTTP Request Object class.

Functions

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open fun hashCode(): Int
toString
Link copied to clipboard
open fun toString(): String

Properties

body
Link copied to clipboard
abstract var body: T?
Request body
headers
Link copied to clipboard
val headers: MutableMap<String, String>
HTTP headers
method
Link copied to clipboard
val method: String
HTTP Request method
url
Link copied to clipboard
val url: String
Request url

Inheritors

JSONRequest
Link copied to clipboard
MultipartRequest
Link copied to clipboard