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

    Interface HarFormatNameValuePair

    Information about a header or a query parameter, as stored in a har file.

    interface HarFormatNameValuePair {
        comment?: string;
        name: string;
        value: string;
    }
    Index

    Properties

    Properties

    comment?: string

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

    name: string

    Name of the header or query parameter.

    value: string

    Value of the header or the query parameter.