@amadeus-it-group/kassette
    Preparing search index...

    Interface HarFormatEntry

    Detailed information about a request and its response, as stored in a har file.

    interface HarFormatEntry {
        _kassetteChecksumContent?: string;
        _kassetteForwardedRequest?: HarFormatRequest;
        _kassetteMockKey?: string;
        cache?: any;
        comment?: string;
        connection?: string;
        pageref?: string;
        request?: HarFormatRequest;
        response?: HarFormatResponse;
        serverIPAddress?: string;
        startedDateTime?: string;
        time?: number;
        timings?: HarFormatTimings;
    }
    Index

    Properties

    _kassetteChecksumContent?: string

    Content used to create a checksum

    kassette only includes this field if saveChecksumContent is true and if the checksum method was called.

    _kassetteForwardedRequest?: HarFormatRequest

    Detailed information about the request forwarded to the remote server.

    kassette only includes this field if saveInputRequestData is true.

    _kassetteMockKey?: string

    Key used by kassette to select the correct mock to replay.

    This field contains the value passed to IMock.setMockHarKey when used with the default mocksHarKeyManager.

    cache?: any

    Information about the cache. This is not implemented in kassette.

    comment?: string

    Any comment as a string. This is not used by kassette.

    connection?: string

    Unique ID of the TCP/IP connection. This is not implemented in kassette.

    pageref?: string

    Reference to the parent page. This is not implemented in kassette.

    Detailed information about the input request.

    kassette only includes this field if saveInputRequestData is true.

    Detailed information about the response.

    serverIPAddress?: string

    Server IP address. This is not implemented in kassette.

    startedDateTime?: string

    Date and time of the request start, as a string in ISO format (YYYY-MM-DDThh:mm:ss.sTZD).

    time?: number

    Total time of the request, in milliseconds. This is the sum of all timings in the timings object.

    Detailed timing information about request/response round trip.

    kassette only includes this field if saveDetailedTimings is true.