@apple/app-store-server-library
    Preparing search index...

    Interface PerformanceTestResultResponse

    An object the API returns that describes the performance test results.

    PerformanceTestResultResponse

    interface PerformanceTestResultResponse {
        config: PerformanceTestConfig;
        failures: { [key: string]: number };
        numPending: number;
        responseTimes: PerformanceTestResponseTimes;
        result: string;
        successRate: number;
        target: string;
    }
    Index

    Properties

    A PerformanceTestConfig object that enumerates the test parameters.

    config

    failures: { [key: string]: number }

    A map of server-to-server notification failure reasons and counts that represent the number of failures during a performance test.

    failures

    numPending: number

    An integer that describes the number of pending requests in the performance test.

    numPending

    A PerformanceTestResponseTimes object that enumerates the response times measured during the test.

    responseTimes

    result: string

    A PerformanceTestStatus object that describes the overall result of the test.

    result

    successRate: number

    An integer that describes he success rate percentage of the performance test.

    successRate

    target: string

    The target URL for the performance test.

    target