HttpGetResponse

data class HttpGetResponse(val fileName: String? = null, val headers: List<String>? = null, val url: String)

Model representing a http get request.

Constructors

Link copied to clipboard
constructor(fileName: String? = null, headers: List<String>? = null, url: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val fileName: String? = null

Name of the file that the request should be saved to.

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

List of headers to send with the request.

Link copied to clipboard
val url: String

URL to make HTTP GET request against.