JSONRequest

open class JSONRequest(url: String, method: String) : Request<String>

JSON Body Request.

Constructors

JSONRequest
Link copied to clipboard
fun JSONRequest(url: String, method: String)

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
open override var body: String? = null
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

TrackRequest
Link copied to clipboard