HttpResponse
data class HttpResponse(val statusCode: String, val description: String? = null, val headers: List<HttpHeader> = emptyList(), val content: List<HttpContent> = emptyList(), val contentDeclared: Boolean = content.isNotEmpty(), val componentRef: String? = null)
Constructors
Link copied to clipboard
constructor(statusCode: String, description: String? = null, headers: List<HttpHeader> = emptyList(), content: List<HttpContent> = emptyList(), contentDeclared: Boolean = content.isNotEmpty(), componentRef: String? = null)