Amazon Vinyl
    Preparing search index...

    Interface NetworkTransferEntry

    Information about a completed content transfer.

    interface NetworkTransferEntry {
        bytes: number;
        contentEnd: number;
        requestStart: number;
        responseEnd: number;
        responseStart?: Maybe<number>;
        serviceId: string | null;
    }
    Index
    bytes: number

    The content-length of the transfer.

    contentEnd: number

    Timestamp when the full response body was received.

    requestStart: number

    Timestamp when the request was initiated.

    responseEnd: number

    Timestamp when the response was received.

    responseStart?: Maybe<number>

    Timestamp when the first byte of the response was transferred. This should only be provided if performance resource timing is available.

    serviceId: string | null

    The id of the service, or null.