/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../index"; /** * Execution configuration for running a Vellum Test Suite against an external callable */ export interface TestSuiteRunExternalExecConfig { data: Vellum.TestSuiteRunExternalExecConfigData; /** Optionally specify a subset of test case ids to run. If not provided, all test cases within the test suite will be run by default. */ testCaseIds?: string[] | null; type: "EXTERNAL"; }