import type * as ElevenLabs from "../index";
export interface TestInvocationSummaryResponseModel {
    /** The ID of the test invocation */
    id: string;
    /** The ID of the agent this test invocation belongs to */
    agentId?: string;
    /** The ID of the branch this test invocation was run on */
    branchId?: string;
    /** Creation time of the test invocation in unix seconds */
    createdAtUnixSecs: number;
    /** Number of test runs in this invocation */
    testRunCount: number;
    /** Number of test runs that passed */
    passedCount: number;
    /** Number of test runs that failed */
    failedCount: number;
    /** Number of test runs that are pending */
    pendingCount: number;
    /** Title of the test invocation - either the single test name or count of tests */
    title: string;
    /** The access information of the test invocation */
    accessInfo?: ElevenLabs.ResourceAccessInfo;
}
