HttpResponse

data class HttpResponse(val status: Int, val body: String?, val headers: Map<String, String> = mapOf())

HTTPレスポンスを表すデータクラス

Constructors

Link copied to clipboard
constructor(status: Int, body: String?, headers: Map<String, String> = mapOf())

Properties

Link copied to clipboard
val body: String?

レスポンスボディ

Link copied to clipboard

レスポンスヘッダー

Link copied to clipboard
val status: Int

HTTPステータスコード