ContinueResponseParameter

@Serializable
data class ContinueResponseParameter(val requestId: String, val responseCode: Int? = null, val responsePhrase: String? = null, val responseHeaders: List<Fetch.HeaderEntry>? = null, val binaryResponseHeaders: String? = null)

Constructors

Link copied to clipboard
constructor(requestId: String, responseCode: Int? = null, responsePhrase: String? = null, responseHeaders: List<Fetch.HeaderEntry>? = null, binaryResponseHeaders: String? = null)

Properties

Link copied to clipboard

Alternative way of specifying response headers as a \0-separated series of name: value pairs. Prefer the above method unless you need to represent some non-UTF8 values that can't be transmitted over the protocol as text. (Encoded as a base64 string when passed over JSON)

Link copied to clipboard

An id the client received in requestPaused event.

Link copied to clipboard
val responseCode: Int? = null

An HTTP response code. If absent, original response code will be used.

Link copied to clipboard

Response headers. If absent, original response headers will be used.

Link copied to clipboard
val responsePhrase: String? = null

A textual representation of responseCode. If absent, a standard phrase matching responseCode is used.