Interface InformationalResponse

An HTTP 1xx informational response (e.g. 100 Continue, 102 Processing, 103 Early Hints) sent before the final response. Multiple of these may be sent for a single request before the final response headers arrive.

interface InformationalResponse {
    eventTimestamp: number;
    headers: Headers;
    id: string;
    rawHeaders: RawHeaders;
    statusCode: number;
    statusMessage: string;
    tags: string[];
    timingEvents: TimingEvents;
}

Hierarchy (view full)

Properties

eventTimestamp: number

A high-precision floating-point monotonically increasing timestamp recording when the informational response was sent.

To link this to the current time, compare it to timingEvents.startTime.

headers: Headers
id: string
rawHeaders: RawHeaders
statusCode: number
statusMessage: string
tags: string[]
timingEvents: TimingEvents