HttpResponseData

open class HttpResponseData : Serializable

Record which contains data received in HTTP response.

Constructors

HttpResponseData
Link copied to clipboard
open fun HttpResponseData(@NonNull headers: HashMap<String, String>, code: Long, @NonNull data: Array<Byte>)

Functions

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

Properties

code
Link copied to clipboard
private val code: Long
data
Link copied to clipboard
private val data: Array<Byte>
headers
Link copied to clipboard
private val headers: HashMap<String, String>