FetchMutableResponse

Properties

Link copied to clipboard
abstract val body: ReadableStream?

Provides access to a ReadableStream which expresses body data enclosed with this response, as applicable and where supported; if no stream can be produced for this response, null may be returned.

Link copied to clipboard
abstract val bodyUsed: Boolean

Indicates whether the ReadableStream provided by body has been consumed for this request.

Link copied to clipboard
abstract override var headers: FetchHeaders

TBD.

Link copied to clipboard
open val ok: Boolean

Indicates whether this response terminated with an "ok" status. If the response terminated with an HTTP status which was between 200 and 299, inclusive, then this returns true. For statuses 400 and above, this value is always false.

Link copied to clipboard

Indicates whether this response was redirected.

Link copied to clipboard
abstract override var status: Int

TBD.

Link copied to clipboard
abstract override var statusText: String

TBD.

Link copied to clipboard
open val type: String

Provides the type of response expressed by this object. Available options:

Link copied to clipboard
abstract override var url: String

TBD.