import type * as ElevenLabs from "../index"; export interface GetTestSuiteInvocationResponseModel { id: string; agentId?: string; branchId?: string; createdAt?: number; folderId?: string; repeatCount?: number; /** None when repeat_count==1 (no bucketing). Otherwise tracks bucketing lifecycle. */ bucketingStatus?: ElevenLabs.BucketingStatus; resultGroups?: ElevenLabs.TestRunResultSummary[]; testRuns: ElevenLabs.UnitTestRunResponseModel[]; }