core-utils
    Preparing search index...
    interface NetworkRequest {
        durationMs?: number;
        failureText?: string;
        method: string;
        offsetMs?: number;
        redirectChain?: NetworkRedirectHop[];
        redirectFromUrl?: string;
        redirectToUrl?: string;
        requestBody?: string;
        requestHeaders?: Record<string, string>;
        resourceType?: string;
        responseBody?: string;
        responseHeaders?: Record<string, string>;
        spanId?: string;
        status: number;
        timings?: NetworkTimingBreakdown;
        traceId?: string;
        url: string;
        wasAborted?: boolean;
    }
    Index

    Properties

    durationMs?: number
    failureText?: string
    method: string
    offsetMs?: number
    redirectChain?: NetworkRedirectHop[]
    redirectFromUrl?: string
    redirectToUrl?: string
    requestBody?: string
    requestHeaders?: Record<string, string>
    resourceType?: string
    responseBody?: string
    responseHeaders?: Record<string, string>
    spanId?: string
    status: number
    traceId?: string
    url: string
    wasAborted?: boolean