HttpRequestResponse

data class HttpRequestResponse(val authentication: Any? = null, val body: String? = null, val headers: Map<String, String>? = null, val method: String? = null, val uri: String? = null)

Constructors

Link copied to clipboard
constructor(authentication: Any? = null, body: String? = null, headers: Map<String, String>? = null, method: String? = null, uri: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authentication: Any? = null

Gets or sets the authentication method of the request.

Link copied to clipboard
val body: String? = null

Gets or sets the request body.

Link copied to clipboard
val headers: Map<String, String>? = null

Gets or sets the headers.

Link copied to clipboard
val method: String? = null

Gets or sets the method of the request.

Link copied to clipboard
val uri: String? = null

Gets or sets the URI of the request.